import type { ConsentAction } from "./types"; export declare const COOKIE_NAME = "probo_consent"; export interface ConsentCookie { bid: string; v: number; vid: string; action: ConsentAction; data: Record; } export declare function getConsentCookie(): ConsentCookie | null; export declare function setConsentCookie(value: ConsentCookie, expiryDays: number): void; export declare function clearConsentCookie(): void; //# sourceMappingURL=cookie.d.ts.map