import * as React from "react"; import type { MapActions, MapState } from './reducer'; type InitialStateType = { map: MapState; }; export declare const MapContext: React.Context<{ state: InitialStateType; dispatch: React.Dispatch; }>; export declare const MapProvider: React.FC; export declare const useMapContext: () => { state: InitialStateType; dispatch: React.Dispatch; }; export {}; //# sourceMappingURL=context.d.ts.map