export interface IPasswordValidation { hasMinimumLength: boolean; hasNumber: boolean; hasSymbol: boolean; isValid: boolean; } export declare const Validators: { checkPassword: (password: string) => { hasMinimumLength: boolean; hasNumber: boolean; hasSymbol: boolean; isValid: boolean; }; isValidPassword: (password: string) => boolean; }; //# sourceMappingURL=Validators.d.ts.map