export declare const forgotPassword: ({ email }: {
    email: any;
}) => Promise<{
    email: string;
}>;
