import * as React from 'react';
import { InputProps } from '../../../components/Input';
import { CSSProperties } from 'react';
export type AdaptableFormControlTextClearProps = {
    OnTextChange: (textValue: string) => void;
    focusOnClear?: boolean;
    autoFocus?: boolean;
    inputStyle?: CSSProperties;
} & InputProps;
export declare const AdaptableFormControlTextClear: React.ForwardRefExoticComponent<Omit<AdaptableFormControlTextClearProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
