/** * DocPackage — 用户文档交付包 * * FR-Z05: * - AC1: 提供 README、Quick Start、配置参考、故障排查文档 * - AC2: 文档内容与当前版本功能一致 * - AC3: Quick Start 可在 5 分钟内完成 */ export interface DocSection { id: string; title: string; content: string; } export interface DocPackage { version: string; sections: DocSection[]; generatedAt: string; } /** * 生成用户文档交付包 */ export declare function generateDocPackage(version: string): DocPackage; export type UsagePath = 'standalone' | 'hosted' | 'full-stack'; export interface DocValidationResult { valid: boolean; sections: { id: string; present: boolean; hasContent: boolean; }[]; missingIds: string[]; } export declare function generateUpgradeGuide(version: string): DocSection; export declare function generateUsagePathDoc(path: UsagePath): DocSection; export declare function validateDocPackage(pkg: DocPackage): DocValidationResult; /** 格式化文档包为 Markdown */ export declare function formatDocPackage(pkg: DocPackage): string; //# sourceMappingURL=doc-package.d.ts.map