/// import { ComponentStory, ComponentMeta } from '@storybook/react'; import { LatLngBoundsLiteral } from 'leaflet'; import { ISidebarTabProps } from 'geovisto-sidebar'; import { ISidebarTabDataProps } from '../react/types'; import '../styles/common.scss'; declare const _default: ComponentMeta<(props: ICustomToolDemoProps) => JSX.Element>; export default _default; export declare type ICustomToolDemoProps = { defaultMapPosition: boolean; toolId: string; toolEnabled: boolean; toolName: string; toolLabel: string; toolUrl: string; toolBounds: LatLngBoundsLiteral; sidebarToolEnabled: boolean; sidebarTabTool: ISidebarTabDataProps; showBaseTileLayerMap: boolean; }; export declare const GeovistoCustomToolStory: ComponentStory<(props: ICustomToolDemoProps) => JSX.Element>;