import type { TextFieldProps } from '../../TextField'; import type { TreeAsyncAutocompleteValue } from '../types'; export type InputProps = Omit & { onChange?: (value?: TreeAsyncAutocompleteValue | null) => void; };