import * as React from 'react'; import { InputProps } from '../../../components/Input'; import { CSSProperties } from 'react'; export declare type AdaptableBlotterFormControlTextClearProps = { OnTextChange: (textValue: string) => void; autoFocus?: boolean; inputStyle?: CSSProperties; } & InputProps; export declare class AdaptableBlotterFormControlTextClear extends React.Component { render(): JSX.Element; }