/** * Policy Panel * Displays detailed runtime policy-pack diagnostics from /init */ import type { ConsentStoreState } from 'c15t'; export interface PolicyPanelOptions { getState: () => ConsentStoreState | null; } /** * Renders the policy panel content */ export declare function renderPolicyPanel(container: HTMLElement, options: PolicyPanelOptions): void;