import { ConnectionsResponse } from "../../../interfaces/models/Connection";
interface FetchConnectionsParams {
    page?: number;
    limit?: number;
}
declare function useFetchConnections(): (props?: FetchConnectionsParams) => Promise<ConnectionsResponse>;
export default useFetchConnections;
