import { SfCommand } from '@salesforce/sf-plugins-core'; export type SetupAgentsEvidenceCompactResult = { originalCount: number; compactedCount: number; archivedFile: string | null; cwd: string; }; export default class EvidenceCompact extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'older-than-days': import("@oclif/core/interfaces").OptionFlag; 'dry-run': import("@oclif/core/interfaces").BooleanFlag; task: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }