import type { PasswordStrength } from './types'; /** @description - This is where we make all the rules for the password checking */ export declare const passwordChecker: (password: string, unsafeList: string[], minLength?: number) => { lengthChecker: boolean; casingChecker: boolean; symbolsAndDigitsChecker: boolean; commonChecker: boolean | ""; }; /** @description - This will check if the password is weak | strong | average */ export declare const passwordStrengthCalculator: (password: string, unsafeList: string[], minLength?: number) => PasswordStrength;