import type { FC, PropsWithChildren } from 'react'; import type { Poi } from './libs/Map'; interface BMapContainerProps { className?: string; zoom?: number; searchValue?: string; setPoiList?: (poiList: any[]) => void; currentPoi?: Poi; renderType?: string; customEngineApi?: any; } declare const BMapContainer: FC>; export default BMapContainer;