export interface FollowUserProps { userId: string; } declare function useFollowUser(): (props: FollowUserProps) => Promise; export default useFollowUser;