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