import { TreeViewItemModel } from "@genexus/chameleon-controls-library/dist/types/components/tree-view/types"; import { TypedObjectData, ObjectTypeData } from "./deployment-tool"; export declare const KB_OBJECT = "object"; export declare const convertObjectTypeDataToTreeView: (objectTypeData: ObjectTypeDataWithItems[]) => TreeViewItemModel[]; export declare const createArrayOfItems: (objectItems: TypedObjectData[], objectTypes: ObjectTypeData[]) => TreeViewItemModel[]; export type ObjectTypeDataWithItems = { id: string; name: string; icon: string; items: TypedObjectData[]; };