/** * Cleanup command - Clean old artifacts and logs */ import type { CliOptions } from '../../types/index.js'; interface CleanupOptions extends CliOptions { days?: string; force?: boolean; } export declare function cleanupCommand(options: CleanupOptions): Promise; export {}; //# sourceMappingURL=cleanup.d.ts.map