import { Connection } from '../types/Connection';
interface Props {
connections: Connection[];
isLoading: boolean;
type: 'available' | 'added';
}
declare const ConnectionsList: ({ connections, isLoading, type }: Props) => JSX.Element;
export default ConnectionsList;