export interface OntologyConfig { projectName: string; architectureLayers?: { id: string; label: string; color: string; }[]; kinds: Record; }>; relationshipTypes: { name: string; label: string; layer: string; color: string; }[]; closureRules: { id: string; description: string; entity: string; rule: { type: string; relationship?: string; min?: number; max?: number; attribute?: string; }; severity: string; }[]; ontologyMetadata?: { id: string; version: string; description: string; author?: string; license?: string; }; } export declare function exportToOwlTurtle(ontology: OntologyConfig, namespace?: string): string; export declare function exportToOwlXml(ontology: OntologyConfig, namespace?: string): string; //# sourceMappingURL=owl-exporter.d.ts.map