import type { ConsentState, RuntimeState } from "../types.ts"; export declare function getEffectiveConsent(getState: () => RuntimeState): ConsentState; export declare function getConsentParts(getState: () => RuntimeState): { consent: ConsentState; consentDefault: ConsentState; consentUpdate: ConsentState; };