import { type TreeListData } from '../Tree'; export type TreeLikeAutocompleteValue = string[]; export type TreeLikeListAutocompleteData = Omit & { /** * Подпись или иное содержимое элемента */ label: string; /** * Дочерние элементы */ children?: TreeLikeListAutocompleteData[]; };