import { PrestepLocalization } from './prestep'; export interface UnlockAccountLocalization { /** * strings in unlock account page */ unlockAccount: { /** * Title to be displayed if unlock account failed */ failedTitle: string; /** * Description message to be displayed if unlock account failed */ failedMessage: string; /** * Button text to navigate back to login page */ failedBackToLoginButton: string; /** * Title to be displayed if unlock account succeeded */ successTitle: string; /** * Description message to be displayed if unlock account succeeded */ successMessage: string; } & PrestepLocalization; }