import React from 'react';
import { MapProps } from '@uiw/react-baidu-map-map';
export interface WithMapProps {
    BMap?: typeof BMap;
    container?: string | HTMLDivElement | null;
    map?: BMap.Map;
}
export default function withMap(Comp: React.ComponentClass<WithMapProps>): React.ForwardRefExoticComponent<MapProps & React.RefAttributes<any>>;
