/** * CLI command: documentation * * Generates a full documentation site structure based on the project context. */ export interface DocumentationOptions { outputDir?: string; verbose?: boolean; force?: boolean; } export declare function documentationCommand(options: DocumentationOptions): Promise; //# sourceMappingURL=documentation.d.ts.map