import { type Domain } from '../core/domains/constants.js'; export interface IndexEntry { path: string; title: string; tier: string; status: string; lastUpdated: string; wordCount?: number; description?: string; } /** * Generate the root INDEX.md content */ export declare function generateRootIndex(entries?: Record): string; /** * Generate a domain-specific INDEX.md content */ export declare function generateDomainIndexContent(domain: Domain, entries?: IndexEntry[]): string; //# sourceMappingURL=index-generator.d.ts.map