export interface SessionCleanupArgs { harness?: string; dryRun?: boolean; stateDir?: string; runsDir?: string; } export interface SessionCleanupResult { markersRemoved: string[]; statesDeactivated: string[]; dryRun: boolean; } export declare function parseMarkerFilename(name: string): { harness: string; pid: number; } | undefined; export declare function runSessionCleanup(args: SessionCleanupArgs): Promise; //# sourceMappingURL=cleanup.d.ts.map