import * as React from 'react'; import { InputProps } from '../../../components/Input'; export type AdaptableInputProps = InputProps & { showClearButton?: boolean; }; declare const AdaptableInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default AdaptableInput;