export declare abstract class ForgotPasswordBase { email?: string; constructor(email?: string); toRequest(): { email: string; }; }