import React from 'react';
import olMap from 'ol/Map';
export interface CurrentMapContextProps {
    map: olMap;
}
export declare const CurrentMapContext: React.Context<CurrentMapContextProps | null>;
