import InfoWindow, { InfoWindowOptionsType } from '../../ui/InfoWindow'; import type Coordinate from '../../geo/Coordinate'; declare module "../Geometry" { interface Geometry { setInfoWindow(options: InfoWindowOptionsType): this; getInfoWindow(): InfoWindow; openInfoWindow(coordinate?: Coordinate): this; closeInfoWindow(): this; removeInfoWindow(): this; } } //# sourceMappingURL=Geometry.InfoWindow.d.ts.map