declare const DEFAULT_PASSWORD_RULES: readonly ["length", "upper", "lower", "number", "symbol"]; export type PasswordRule = (typeof DEFAULT_PASSWORD_RULES)[number]; export type PasswordStrengthLabels = { weak: string; fair: string; strong: string; }; export type PasswordStrengthProps = { value: string; rules?: PasswordRule[]; showChecklist?: boolean; labels?: PasswordStrengthLabels; }; export type PasswordStrengthReturn = { score: 0 | 1 | 2 | 3 | 4; checks: Record; }; export declare function usePasswordStrength(value: string, rules?: PasswordRule[]): PasswordStrengthReturn; export declare function PasswordStrength({ value, rules, showChecklist, labels, }: PasswordStrengthProps): import("react").JSX.Element; export {};