import type { Domain } from '../../core/domains/constants.js'; import type { Tier } from '../../core/domains/classifier.js'; export interface DocumentTemplateOptions { title: string; tier?: Tier; domain?: Domain; author?: string; tags?: string[]; } /** * Generate a new document template with frontmatter */ export declare function generateDocumentTemplate(options: DocumentTemplateOptions): string; //# sourceMappingURL=document.d.ts.map