export interface BaseMapTileLayerType { iconUrl?: string; type: string; label: string; url: string; id?: string | undefined; minZoom?: number | undefined; maxZoom?: number | undefined; subdomains?: string | string[] | undefined; errorTileUrl?: string | undefined; checked?: boolean; } export declare const baseMapTitleLayerConfig: BaseMapTileLayerType[];