export declare const minLength: (minLength?: number) => ({ length }?: string) => boolean; export declare const hasUpperCase: (password?: string) => boolean; export declare const hasLowerCase: (password?: string) => boolean; export declare const hasDigit: (password?: string) => boolean; export declare const validatePassword: (password: string) => boolean; type Requirement = { test: (password: string) => boolean; message: string; }; export declare const createPasswordValidator: (requirements?: Requirement[]) => (value: string) => string[]; export declare const defaultPasswordValidator: (value: string) => string[]; export {};