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