/** * Consents Panel * Displays and manages consent state */ import type { ConsentStoreState } from 'c15t'; export interface ConsentsPanelOptions { getState: () => ConsentStoreState | null; onConsentChange: (name: string, value: boolean) => void; onSave: () => void; onAcceptAll: () => void; onRejectAll: () => void; onReset: () => void; } /** * Renders the consents panel content */ export declare function renderConsentsPanel(container: HTMLElement, options: ConsentsPanelOptions): void;