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