declare function useFetchFollow(): (props: {
    userId: string;
}) => Promise<{
    isFollowing: boolean;
}>;
export default useFetchFollow;
