import type { CSSProperties, ReactNode } from 'react'; import { type MapRef } from 'react-map-gl/maplibre'; export interface BBox { minLng: number; minLat: number; maxLng: number; maxLat: number; } export interface MapBaseProps { initialViewState?: { longitude: number; latitude: number; zoom: number; }; styleUrl?: string; style?: CSSProperties; showControls?: boolean; showCssLink?: boolean; onMapRef?: (ref: MapRef | null) => void; children?: ReactNode; } export declare function MapBase(props: MapBaseProps): import("react/jsx-runtime").JSX.Element;