// Geovisto import { ISidebarTab } from "geovisto-sidebar"; // Internal imports import { IToolDataProps } from "./IComponentTool"; // Exclude undesirable default sidebar properties export type ISidebarToolDataProps = IToolDataProps>; // Handle ref calls from parent export type ISidebarToolHandle = { getTabs: () => void; } // Default sidebar tab type export type ISidebarTabs = [ string | undefined, ISidebarTab ][];