/// import { ComponentStory, ComponentMeta } from '@storybook/react'; import { ISidebarTabProps } from 'geovisto-sidebar'; import { ISidebarTabDataProps } from '../react/types'; import '../styles/common.scss'; declare const _default: ComponentMeta<(props: IMapDemoProps) => JSX.Element>; export default _default; export declare type IMapDemoProps = { data: unknown; config: Record; mapClassName: string; sidebarToolEnable: boolean; tilesLayerToolEnable: boolean; tilesLayerToolBaseMapUrl: string; tilesLayerToolId: string; themesToolEnable: boolean; sidebarTabTilesLayerTool: ISidebarTabDataProps; }; export declare const ReactGeovistoMap: ComponentStory<(props: IMapDemoProps) => JSX.Element>;