import { User } from "@firebase/auth-types"; export interface VerifyEmailViewProps { states?: { verifyState: { emailSent: boolean; emailError: boolean | string; loadingEmail: boolean; loadingValidation: boolean; validationError: string; countdown: number; }; isVerified: boolean; }; data?: { user?: User; oobCode: string; email: string; }; callbacks?: { sendValidationEmail: () => Promise; }; } export declare function VerifiedView(props: VerifyEmailViewProps): any; export declare function VerificationEmailView(): any; export declare function VerifyView(props: VerifyEmailViewProps): any;