/** * manifest docs command * * Generates a static documentation site from Manifest IR. * Each entity gets a reference page with property tables, command signatures, * policy rules, constraint details, and event listings. */ interface DocsOptions { output?: string; format?: 'html' | 'markdown'; title?: string; dryRun?: boolean; } /** * Generate documentation from IR or .manifest source files. */ export declare function docsCommand(source: string | undefined, options?: DocsOptions): Promise; export {}; //# sourceMappingURL=docs.d.ts.map