import { Map as MapboxMap, MapboxOptions } from 'mapbox-gl'; import { IMapProps } from '../../models/map'; export declare class MapController { id: string; lang: string; private map?; private readonly token; constructor(mapProps: IMapProps); /** * Get the mapbox map instance. (note!) Use after `render` method. * @return {MapboxMap} map. */ getJSMap: () => MapboxMap; /** * Render map at initial bounds. * @param {mapboxgl.LngLatBoundsLike} bounds - initial map bounds. * @return {this} this. */ render: (options?: Partial) => this; }