export declare const treeViewDef: {
    type: "TreeView";
    component: (props: import('./TreeViewWrapper').TreeViewWrapperProps) => import("react/jsx-runtime").JSX.Element;
    props: {
        items: ({
            itemId: string;
            label: string;
            _parentId?: undefined;
        } | {
            itemId: string;
            _parentId: string;
            label: string;
        })[];
        selectedItems: never[];
    };
    icon: string;
    category: "data";
    schema: import('../..').ExtendedObjectSchemaType;
};
