import { KeyboardEvent } from 'react';
export declare const usePasswordStrength: () => {
    password: string;
    valid: boolean;
    missingConditions: string[];
    handleChange: (e: KeyboardEvent<HTMLInputElement>) => void;
};
