export declare const minCharacter: (password: string, min: number) => boolean;
export declare const maxCharacter: (password: string, max: number) => boolean;
export declare const haveDigits: (password: string, parsedRepeat?: number) => boolean;
export declare const haveLetters: (password: string, parsedRepeat?: number) => boolean;
export declare const haveSymbols: (password: string, parsedRepeat?: number) => boolean;
export declare const noSpaces: (password: string) => boolean;
export declare const upperCase: (password: string, parsedRepeat?: number) => boolean;
export declare const lowerCase: (password: string, parsedRepeat?: number) => boolean;
