import type * as L from "leaflet"; import type { ChoroplethOptions, CodeValueRow, PrefectureProperties } from "./types.js"; /** * 都道府県単位のコロプレス地図を作成する * * @param map Leafletの地図 * @param rows `{ code, value }` の配列、codeは2桁の都道府県コード * @param options 表示設定 * @returns 追加されたLeaflet GeoJSONレイヤー */ export declare function createPrefectureChoropleth(map: L.Map, rows: CodeValueRow[], options?: ChoroplethOptions): Promise; export type { ChoroplethOptions, CodeValueRow, LegendOptions, PrefectureProperties, TileLayerOptions } from "./types.js";