import React from "react"; import { MiniMapManagerImpl, MiniMapsState } from "./manager"; export type MapViewProps = Omit & { viewId: string; highlightColor: string; miniMapManager: MiniMapManagerImpl; }; export declare const MapView: (props: MapViewProps) => React.JSX.Element; export interface MapViewContainerProps { className: string; miniMapManager: MiniMapManagerImpl; active?: string; } export declare const MiniMapViewContainer: (props: MapViewContainerProps) => React.JSX.Element;