import { TreeViewBaseItem } from '@mui/x-tree-view'; declare module "@mui/x-tree-view" { interface TreeItem2Props { selectedItem?: string | null; searchedItemIds?: string[]; isLeaf: (itemId: string | null) => boolean; searched: boolean; } } type ItemData = { id: string; label: string; disabled?: boolean; }; export type ItemProps = TreeViewBaseItem; type FoodsTreeViewProps = { items: ItemProps[]; onSelectedItem: (itemId: string | null) => void; defaultSelectedId?: string; searchable?: boolean; }; export declare const FoodsTreeview: (props: FoodsTreeViewProps) => import("react/jsx-runtime").JSX.Element; export {};