import { IRoute } from '../interfaces/route.interface'; import { CircleEvent } from './circle-event.model'; import { MarkerEvent } from './marker-event.model'; import { AreaEvent } from './area-event.model'; import { Bounds } from './bounds-map.model'; import { Position } from './position.model'; export declare class MapStateOptions { zoom: number; center: Position; bounds: Bounds; drawMarker: MarkerEvent; drawCircle: CircleEvent; drawArea: AreaEvent; drawMode: any; routes: IRoute; constructor(obj: Partial); }