declare const isFollowed: import('vue').Ref; declare const followButtonText: import('vue').ComputedRef; export declare enum FollowType { None = 0, Fans = 1, Follow = 2, Both = 3 } export declare function getFollowInfo(userId: string): Promise; export declare function followUser(userId: string): Promise; export declare function unfollowUser(userId: string): Promise; export { followButtonText, isFollowed };