import * as react_jsx_runtime109 from "react/jsx-runtime"; import * as z from "zod"; //#region ui/password-strength.d.ts declare const passwordSchema: z.ZodString; declare function getPasswordStrength(password: string): { score: number; feedback: string[]; isValid: boolean; }; interface PasswordStrengthProps { password: string; showFeedback?: boolean; } declare function PasswordStrength({ password, showFeedback }: PasswordStrengthProps): react_jsx_runtime109.JSX.Element | null; //#endregion export { PasswordStrength, getPasswordStrength, passwordSchema }; //# sourceMappingURL=password-strength.d.ts.map