declare const isValidPassword: (pass: string | undefined | null, minLength: number, strongLevel?: 1 | 2 | 3) => boolean;
declare const randomPassword: (minLength?: number, generateStrongLevel?: 1 | 2 | 3, maxRetry?: number) => string;

export { isValidPassword, randomPassword };
