declare const FollowUser: (profile: string, token: string) => Promise; declare const UnFollowUser: (profile: string, token: string) => Promise; declare const getFollowers: (address: string, limit: number) => Promise; declare const getFollowings: (address: string, limit: number) => Promise; export { FollowUser, UnFollowUser, getFollowers, getFollowings };