/// import { InputProps } from '../Input'; export interface TextFieldProps extends InputProps { label?: string; keepFocus?: boolean; srOnly?: boolean; error?: boolean; labelStyle?: object; onClear?: () => void; autoFocus?: boolean; } declare const TextField: ({ label, srOnly, onClear, value, keepFocus, blurOnEscape, error, labelStyle, id: idProp, autoFocus, ...otherProps }: TextFieldProps) => JSX.Element; export default TextField; //# sourceMappingURL=TextField.d.ts.map