/** * Events Panel * Displays chronological list of consent-related events */ import type { EventLogEntry } from '../core/state-manager'; export interface EventsPanelOptions { getEvents: () => EventLogEntry[]; onClear: () => void; } /** * Renders the events panel content */ export declare function renderEventsPanel(container: HTMLElement, options: EventsPanelOptions): void;