import type { Concept } from './models/concept.js'; import type { Register } from './models/register.js'; export type ConceptFormat = 'canonical' | 'managed' | 'auto'; export declare function writeConcept(dir: string, concept: Concept, format?: ConceptFormat): void; export interface WriteConceptsOptions { format?: ConceptFormat; register?: Register | null; } export declare function writeConcepts(dir: string, concepts: Iterable, options?: WriteConceptsOptions): void; //# sourceMappingURL=concept-writer.d.ts.map