import { PasswordProps } from 'antd/es/input';
import { FC } from 'react';
import { INPUT_PASSWORD } from '../../../Types';
export interface IInputPassword {
    ctype: typeof INPUT_PASSWORD;
    props: PasswordProps;
}
declare const InputPassword: FC<IInputPassword>;
export default InputPassword;
