/** * @dynamic need this because there are static memebers * * Password / Confirm password constants */ export declare class PasswordValidationMessagesConstants { /** * Constant for confirm password equal */ static readonly PASSWORDS_MATCH: string; /** * Constant for confirm password required */ static readonly CONFIRM_REQUIRED: string; /** * Constant for password pattern */ static readonly PATTERN: string; /** * Constant for password required */ static readonly REQUIRED: string; /** * Constant for password min length * * @param length charcter length */ static MIN_LENGTH(length: number): string; }