import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface IHIDTextFieldProps 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 IHIDTextFieldState { } /** * ### The API documentation of the HID Text Field React component. Learn more about the properties and the API Methods. * */ export default class HIDTextField extends React.Component { textField: { flexBasis: number; borderRadius: number; color: string; }; handleChange: (event: any) => void; componentDidMount(): void; render(): JSX.Element; }