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