///
import { type TextFieldProps } from '../../TextField';
import type { TreeLikeAutocompleteValue, TreeLikeListAutocompleteData } from '../types';
export type InputProps = Omit & {
value?: TreeLikeAutocompleteValue;
valueToRender?: TreeLikeListAutocompleteData[] | undefined;
/**
* Флаг загрузки options
* Если true, будет дополнительно отображен лоадер
*/
isLoading?: boolean;
/**
* Функция, которая запускается при изменении значений
*/
onChange?: (value: TreeLikeAutocompleteValue | undefined) => void;
};
export declare const Input: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;