/// import { IMap, IMapConfigManager, IMapProps } from "geovisto"; export declare type IGeovistoMapProps = IMapProps & { children?: React.ReactNode; config?: IMapConfigManager; id: string; className: string; }; export declare type IGeovistoMapHandle = { getMap: () => IMap | undefined; };