export declare const emailOtpLocalization: {
    /** @remarks `"Email Code"` */
    emailOtp: string;
    /** @remarks `"Send code"` */
    sendCode: string;
    /** @remarks `"Code"` */
    code: string;
    /** @remarks `"Verify code"` */
    verifyCode: string;
    /** @remarks `"We sent a code to {{email}}"` */
    codeSentTo: string;
    /** @remarks `"Enter the {{length}}-digit code"` */
    codeLengthMismatch: string;
    /** @remarks `"Use a different email"` */
    useDifferentEmail: string;
    /** @remarks `"Code sent"` */
    codeSent: string;
    /** @remarks `"Email verified"` */
    emailVerified: string;
    /** @remarks `"Confirm your current email"` */
    confirmCurrentEmail: string;
    /** @remarks `"Confirm your new email"` */
    confirmNewEmail: string;
    /** @remarks `"Enter the code we sent to {{email}} to finish the change"` */
    confirmEmailDescription: string;
};
export type EmailOtpLocalization = typeof emailOtpLocalization;
