import React from 'react';
type Prop = {
    className?: string;
    maxLength?: number;
    defaultValue?: string;
    onChange?: (value: string) => void;
    onPressEnter?: (event: any) => void;
    onBlur?: (event: any) => void;
    autoFocus?: boolean;
};
declare const InputPassword: (prop: Prop) => React.JSX.Element;
export default InputPassword;
