import { type GcPlan } from '../core/gc.js'; export type GcCommandOptions = { reportDir?: string; dryRun?: boolean; delete?: boolean; }; export declare function gcCommand(options?: GcCommandOptions): Promise; export declare function renderGcSummary(plan: GcPlan): string;