declare function useFetchFollowingCountByUserId(): ({ userId }: {
    userId: string;
}) => Promise<{
    count: number;
}>;
export default useFetchFollowingCountByUserId;
