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