/// import type { MapOptions } from '../types/map'; import 'maplibre-gl/dist/maplibre-gl.css'; export interface ExtendedMapOptions extends MapOptions { onMapLoad?: (map: maplibregl.Map) => void; sprite?: string; glyphs?: string; } interface IProps { options?: ExtendedMapOptions; onMapLoad?: (map: maplibregl.Map) => void; } export default function Map({ options: mapOptions, onMapLoad }: IProps): JSX.Element; export {};