import { ICustomOverlayApi, IMapApi } from './abstract'; export interface IGisConfig { javascripApi: string; } export declare const apiAdapter: { map: (type: any, container: any) => IMapApi; customOverlay: (type: any, viewport: any, api: any) => ICustomOverlayApi; prepareApi: (type: any, apiKeys: { amapKey?: string; bmapKey?: string; tmapKey?: string; }) => Promise; };