///
import { InputWrapperProps } from './InputWrapper';
import { TextInputBaseProps } from './TextInputBase';
export type PublicInputWrapperProps = Pick;
export interface TextInputProps extends TextInputBaseProps, PublicInputWrapperProps {
/**
* Whether the input should show the clear icon button.
*/
clearable?: boolean;
onClear?: InputWrapperProps['onClear'];
}
export declare function TextInput(props: TextInputProps): JSX.Element;
export declare namespace TextInput {
var defaultProps: Partial;
}