export type NodesetName = "standard" | "di" | "amb" | "adi" | "autoId" | "commercialKitchenEquipment" | "cnc" | "gds" | "glass" | "ia" | "iolink" | "iolinkIODD" | "ijtBase" | "irdi" | "isa95JobControl" | "machineryJobs" | "machinery" | "machineryProcessValues" | "machineryResult" | "machineTool" | "machineVision" | "metalForming" | "packML" | "padim" | "robotics" | "scales" | "tightening" | "woodWorking";
export type NodesetMeta = {
    name: NodesetName;
    packageName: string;
    uri: string;
    xmlFile: string;
    dependencies: NodesetName[];
    licence?: "DUAL" | "MIT";
};
export declare const nodesetCatalog: NodesetMeta[];
