import type { AbTestCookie } from '../types'; import type { CachedAbTest } from './types'; /** * Collect all active test IDs from a testsByPath map. */ export declare function getActiveTestIds(testsByPath: Record | Map): Set; /** * Remove cookie entries for tests no longer in the active config. * * @returns true if any keys were removed */ export declare function pruneStaleAssignments(cookie: AbTestCookie, activeTestIds: Set): boolean; //# sourceMappingURL=prune.d.ts.map