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