export interface OtcLocalization { /** * Oct section title */ otcTitle: string; /** * Otc input label */ otcInputLabel: string; /** * Text Continue */ otcContinue: string; /** * Text Back */ otcBack?: string; /** * Text Resend */ otcResend?: string; /** * Text resending in progress */ otcResending?: string; /** * Otc input error message if it's empty */ otcCodeIsRequired?: string; /** * Text `the OTC has a wrong length` */ otcInvalidLengthCode?: string; /** * Text HaventReceivedCode */ otcHaventReceivedCode?: string; /** * Oct section message * EX: "We sent you a six digit code at {{email}}" */ otcMessage?: string; /** * Otc input placeholder */ otcInputPlaceholder?: string; }