import React from 'react';
import type { BaseInputProps } from './input';
import type { PasswordProps } from 'antd/lib/input';
import type { InputRef } from 'antd/lib/input';
export type PasswordInputProps = BaseInputProps & Pick<PasswordProps, 'visibilityToggle'>;
declare const Password: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<InputRef>>;
export { Password, };
//# sourceMappingURL=password.d.ts.map