import type { MapConfig } from '../core/MapConfig' /** * Configuration for categorical map */ export interface CategoricalMapConfig extends MapConfig { /** Category-to-color mapping */ classToFillStyle?: Record /** Fill style for regions with no data */ noDataFillStyle?: string }