import React from 'react'; import { ISidebarToolProps } from 'geovisto-sidebar'; import { ISidebarToolHandle } from '../types'; /** * Component wrapping the Geovisto SidebarTool module */ export declare const SidebarTool: React.ForwardRefExoticComponent & { children?: React.ReactNode; onToolChange?: ((data: any, property?: string | undefined) => void) | undefined; } & React.RefAttributes>;