/** * memo import owl — Import an OWL/Turtle or JSON-LD file. * * Accepts: * - .ttl — OWL/Turtle format * - .owl — OWL/RDF (parsed as Turtle subset) * - .jsonld / .json — JSON-LD format * * Output modes: * - Default: single .sysml file with all definitions * - --package-dir: full ontology package directory with layer-organized SysML files */ export declare function importOwlCommand(file: string, options: { output?: string; package?: string; packageDir?: string; dryRun?: boolean; }): Promise; //# sourceMappingURL=import-owl.d.ts.map