export interface MergeableDocument { slug: string; name: string; content: string; } /** * Merges multiple documents into a single Markdown file. * Documents are ordered by the canonical DOCUMENT_TYPE_ORDER, * with custom types appended alphabetically. */ export declare function mergeDocuments(documents: MergeableDocument[], model: string): string; //# sourceMappingURL=merger.d.ts.map