/** * Actions Panel * Quick actions for developers */ import type { ConsentStoreState } from 'c15t'; export interface ActionsPanelOptions { getState: () => ConsentStoreState | null; onResetConsents: () => void; onRefetchBanner: () => void; onShowBanner: () => void; onOpenPreferences: () => void; onCopyState: () => void; onExportDebugBundle?: () => void; } /** * Renders the actions panel content */ export declare function renderActionsPanel(container: HTMLElement, options: ActionsPanelOptions): void;