import * as React from 'react'; import { CommonProps } from '../../'; import * as types from '../../types'; export interface TextFieldProps extends CommonProps { autoFocus?: boolean; beforeValueChange?: (...args: any[]) => any; customQuery?: (...args: any[]) => any; dataField: string; debounce?: number; defaultSelected?: string; filterLabel?: string; innerClass?: types.style; innerRef?: (...args: any[]) => any; onBlur?: (...args: any[]) => any; onFocus?: (...args: any[]) => any; onKeyDown?: (...args: any[]) => any; onKeyPress?: (...args: any[]) => any; onKeyUp?: (...args: any[]) => any; onValueChange?: (...args: any[]) => any; placeholder?: string; react?: types.react; ref?: (...args: any[]) => any; showFilter?: boolean; themePreset?: types.themePreset; title?: types.title; } declare const TextField: React.ComponentType; export default TextField;