import { c as Projection, d as SvgSettings, i as MapData, l as ProjectionName, n as DottedMapWithoutCountriesSettings, o as PinInput, r as ImageInfo, s as Point, u as Region } from "./types-vOcy-UuQ.cjs"; //#region src/without-countries.d.ts declare class DottedMapWithoutCountries { private points; private X_MIN; private Y_MAX; private X_RANGE; private Y_RANGE; private grid; private width; private height; private ystep; private avoidOuterPins; private pins; private proj4String; image: ImageInfo; constructor({ map, avoidOuterPins }: DottedMapWithoutCountriesSettings); addPin({ lat, lng, data, svgOptions }: PinInput): Point; getPin({ lat, lng }: { lat: number; lng: number; }): Point | undefined; getPoints(): Point[]; getSVG({ shape, color, backgroundColor, radius }?: SvgSettings): string; } //#endregion export { type DottedMapWithoutCountriesSettings, type ImageInfo, type MapData, type PinInput, type Point, type Projection, type ProjectionName, type Region, type SvgSettings, DottedMapWithoutCountries as default };