/** Resolve the ontology package selected by this tools installation. */ export declare function resolveContentPackageRoot(): string; /** Relative path (from a legacy tools checkout) to the ontology repository. */ export declare const VENDOR_ONTOLOGY_DIR = "memo"; /** * Relative path (from a legacy tools checkout) to the ontology `src/` root. * All SysML v2 ontology/methodology/example content lives under `src/`, organized * to mirror the `memo::` namespace hierarchy (e.g. `src/architecture/context/`). * Package manifests point `sysmlDir` here; the loader walks it for catalog layers. */ export declare const VENDOR_ONTOLOGY_SRC_DIR = "memo/src"; /** * Relative path (from a legacy tools checkout) to the DHF templates shipped with * the ontology. They are artifact templates — document payloads governed by the * artifacts taxonomy — and live in the ontology repo, not the engine. * * They used to sit under `src/compliance/`, a namespace the V-model taxonomy * removed. That directory was also absent from the package's `files` list, so * the templates shipped to nobody: DHF template resolution worked in a linked * workspace and failed for every installed user. `src/artifacts/` is published, * which fixes both the name and the packaging. */ export declare const VENDOR_DHF_TEMPLATES_DIR = "memo/src/artifacts/templates/dhf"; //# sourceMappingURL=paths.d.ts.map