import type { LegendItem } from '../../core/components/legend/categorical/types/legend.js'; export interface HoneycombOverlayState { toolbarVisible: boolean; } export interface HoneycombSelectionState { hovered: LegendItem | undefined; } export interface HoneycombState { selection: HoneycombSelectionState; overlay: HoneycombOverlayState; } export declare const initialState: HoneycombState;