import * as L from "leaflet"; import type { ChoroplethOptions, DatasetConfig, Range } from "./types.js"; export declare function createChoropleth(map: L.Map, rows: Row[], config: DatasetConfig, options?: ChoroplethOptions): Promise; export declare function loadJson(url: string): Promise; export declare function createValueMap(rows: Row[], config: DatasetConfig, options?: ChoroplethOptions): Map; export declare function getDefaultColor(value: number, range: Range): string;