///
import { type TextFieldProps } from '../../TextField';
import type { TreeAutocompleteValue } from '../types';
export type InputProps = Omit & {
onChange?: (value: TreeAutocompleteValue | undefined) => void;
};
export declare const Input: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;