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