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