import type { BrowserContext } from "playwright"; import type { ScannedCookie } from "../types.js"; type CapturePhase = ScannedCookie["capturedAt"]; export declare function captureCookies(context: BrowserContext, phase: CapturePhase, strict?: boolean): Promise; export declare function diffCookies(before: ScannedCookie[], after: ScannedCookie[]): { added: ScannedCookie[]; removed: ScannedCookie[]; persisted: ScannedCookie[]; }; export {}; //# sourceMappingURL=cookies.d.ts.map