import { ConnectionCountResponse } from "../../../interfaces/models/Connection";
export interface FetchConnectionsCountByUserIdParams {
    userId: string;
}
declare function useFetchConnectionsCountByUserId(): (props: FetchConnectionsCountByUserIdParams) => Promise<ConnectionCountResponse>;
export default useFetchConnectionsCountByUserId;
