import * as React from 'react'; import { TextInputProps } from '@patternfly/react-core'; export interface TableTextInputProps extends Omit { defaultValue?: string; autoFocus?: boolean; onBlur?(value: string, event: React.FormEvent): void; } export declare class TableTextInput extends React.Component { static displayName: string; static defaultProps: { autoFocus: boolean; }; handleBlur: (event: React.FocusEvent) => void; render(): JSX.Element; } //# sourceMappingURL=TableTextInput.d.ts.map