import { InputPasswordProps } from '../../common/components/input-password/InputPassword'; import { BaseInputFieldProps } from '../../common/types/input'; export interface PasswordFieldProps extends BaseInputFieldProps, InputPasswordProps { } /** * controlled * uncontrolled * * The `` component hides your input (for use with passwords).
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229e1679fe1609a48066a60) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password) for further information about the element and related attributes. */ declare const PasswordField: import("react").ForwardRefExoticComponent>; export default PasswordField;