import type { AbstractMap } from './map/map';
import { MapOptions } from './map/map-options';
export declare enum TgMapType {
    google = "google",
    baidu = "baidu",
    here = "here"
}
export declare namespace TgMapFactory {
    function createMap(type: TgMapType, $map: HTMLElement, mapOptions?: Partial<MapOptions>): AbstractMap;
}
