/// interface Props { name: string; label?: string; placeholder?: string; strength?: number; } declare type PasswordInputProps = JSX.IntrinsicElements['input'] & Props; export declare function PasswordInput({ name, label, disabled, strength, ...rest }: PasswordInputProps): JSX.Element; export {};