interface InputProps {
    name: string;
    placeholder?: string;
    label: string;
    defaultValue?: string;
}
declare const Password: React.FC<InputProps>;
export default Password;
