import { ChoroplethOptions } from './types'; /** * 默认配置项 */ export declare const DEFAULT_OPTIONS: Partial; /** * 行政数据默认显示粒度 */ export declare const DEFAULT_AREA_GRANULARITY: Record; /** * 行政地理数据服务地址 */ export declare const GEO_DATA_URL = "https://gw.alipayobjects.com/os/alisis/geo-data-v0.1.2"; export declare const GEO_AREA_URL = "https://gw.alipayobjects.com/os/alisis/geo-data-v0.1.2/choropleth-data"; /** * 中国国界样式 */ export declare const CHINA_BOUNDARY_STYLE: { national: { color: string; width: number; opacity: number; }; dispute: { color: string; width: number; opacity: number; dashArray: number[]; }; coast: { color: string; width: number; opacity: number; }; hkm: { color: string; width: number; opacity: number; dashArray: number[]; }; };