import * as React from 'react'; export interface ITextFieldProps { onChange: (value: string) => void; id?: string; className?: string; value?: string; placeholder?: string; disabled?: boolean; hasError?: boolean; } export declare const TextField: React.FC & React.HTMLProps>;