/** * Location Panel * Displays and manages location/language overrides */ import type { ConsentStoreState } from 'c15t'; interface OverridePayload { country?: string; region?: string; language?: string; gpc?: boolean; } export interface LocationPanelOptions { getState: () => ConsentStoreState | null; onApplyOverrides: (overrides: OverridePayload) => void | Promise; onClearOverrides: () => void | Promise; } /** * Renders the location panel content */ export declare function renderLocationPanel(container: HTMLElement, options: LocationPanelOptions): void; export {};