import { PureComponent } from 'react';
import { InputPassword } from './Props';
declare class Password extends PureComponent<InputPassword> {
    static defaultProps: {
        value: string;
        point: string;
    };
    constructor(props: InputPassword);
    handleChange(val: string): void;
    render(): JSX.Element;
}
export default Password;
