export interface ErrorMessages {
    /**
     * Default to 'User not found'
     */
    userNotFound: string;
    /**
     * Default to 'Unrecognized options for login request'
     */
    unrecognizedOptionsForLogin: string;
    /**
     * Default to 'Match failed'
     */
    matchFailed: string;
    /**
     * Default to 'Invalid email'
     */
    invalidEmail: string;
    /**
     * Default to 'Login token expired'
     */
    loginTokenExpired: string;
}
