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