/** * CLI command: readme * * Generates a README.md file based on the project context. */ export interface ReadmeOptions { output?: string; force?: boolean; verbose?: boolean; } export declare function readmeCommand(options: ReadmeOptions): Promise; //# sourceMappingURL=readme.d.ts.map