import type * as L from "leaflet"; import type { ChoroplethOptions, CodeValueRow, MunicipalityDistrictProperties } from "./types.js"; /** * 市区町村と小選挙区の重なり単位のコロプレス地図を作成する * * @param map Leafletの地図 * @param rows `{ code, value }` の配列、codeは市区町村コードと小選挙区コードをつなげたID * @param options 表示設定 * @returns 追加されたLeaflet GeoJSONレイヤー * * @example * ```ts * await createMunicipalityDistrictChoropleth(map, [{ code: "011010101", value: 56.8 }]) * ``` */ export declare function createMunicipalityDistrictChoropleth(map: L.Map, rows: CodeValueRow[], options?: ChoroplethOptions): Promise; export type { ChoroplethOptions, CodeValueRow, LegendOptions, MunicipalityDistrictProperties, TileLayerOptions } from "./types.js";