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