/** * Scripts Panel * Displays script loading status and configuration */ import type { ConsentStoreState } from 'c15t'; import type { EventLogEntry } from '../core/state-manager'; export interface ScriptsPanelOptions { getState: () => ConsentStoreState | null; getEvents?: () => EventLogEntry[]; } /** * Renders the scripts panel content */ export declare function renderScriptsPanel(container: HTMLElement, options: ScriptsPanelOptions): void;