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