import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface IHIDPasswordFieldProps extends HIDComponentProps { /** Test Id */ testId?: string; /** Id */ id?: string; /** Label */ label: string; /** Value */ value?: string; /** Default value */ defaultValue?: string; /** Helper text */ helperText?: string; /** Is error flag */ error?: boolean; /** on change callback function */ onChange?: any; } export interface IHIDPasswordFieldState { showPassword: boolean; } /** * ### The API documentation of the HID Password Field React component. Learn more about the properties and the API Methods. * */ export default class HIDPasswordField extends React.Component { state: IHIDPasswordFieldState; textField: { borderRadius: number; flexBasis: number; color: string; }; handleChange: (event: any) => void; handleClickShowPassword: () => void; render(): JSX.Element; }