import type { AuditState } from "../types/auditState.js"; export type CleanupOptions = { force?: boolean; dryRun?: boolean; preRun?: boolean; }; export type CleanupResult = { action: "deleted" | "skipped" | "dry-run"; status: AuditState["status"] | "unknown"; reason?: string; }; export declare function cleanupStaleArtifactsDir(artifactsDir: string, options?: CleanupOptions): Promise; //# sourceMappingURL=cleanup.d.ts.map