import { type MaplibreViewMode } from '../../store/MaplibreStore';
/**
 * Main MobX adapter component that bridges application state to the
 * state-agnostic MaplibreWrapper.
 *
 * Reused renderer config modules still read singleton stores internally;
 * MaplibreWrapper itself remains pure and decoupled from application state.
 */
interface MaplibreAdapterProps {
    viewMode: MaplibreViewMode;
}
declare const MaplibreAdapter: import("react").FunctionComponent<MaplibreAdapterProps>;
export default MaplibreAdapter;
//# sourceMappingURL=MaplibreAdapter.d.ts.map