/** * Retention Policy Runner * Synchronous utility to run session retention policy from config */ import { type SessionCleanupResult } from './retention-manager.js'; /** * Run the retention policy from config synchronously */ export declare function runRetentionPolicy(dryRun?: boolean): Promise; /** * Check if retention policy limits are exceeded and cleanup is needed */ export declare function shouldRunAutomaticCleanup(): Promise; /** * Run automatic cleanup silently in the background if needed * This is meant to be called during CLI initialization */ export declare function runAutomaticCleanupIfNeeded(): Promise; //# sourceMappingURL=retention-policy-runner.d.ts.map