import * as React from 'react'; import { TextInputProps } from '../../common'; export interface PasswordFieldProps extends TextInputProps { /** * @ignore */ children?: void; } export interface PasswordFieldState { reveal: boolean; } /** * A password field for custom user input. */ export declare class PasswordField extends React.Component { constructor(props: PasswordFieldProps); private showPassword; private hidePassword; private renderDefaultSuffix; render(): JSX.Element; static inner: { readonly IconLink: React.SFC & { inner: { readonly StyledAnchor: any; readonly StyledIcon: any; readonly AnchorText: any; }; }; readonly StyledTextField: any; }; }