export interface FetchFollowStatusProps { userId: string; } export interface FollowStatusResponse { isFollowing: boolean; followId?: string; followedAt?: string; } declare function useFetchFollowStatus(): (props: FetchFollowStatusProps) => Promise; export default useFetchFollowStatus;