// Geovisto import { IMapToolProps } from "geovisto"; // Internal imports import { IToolDataProps } from "./IComponentTool"; // Default type of a user-specified custom geovisto tool export type ICustomToolProps = IToolDataProps & any & { createTool: (props: unknown) => unknown }; // User-specified props changes that should component react to export type ICustomToolPropsValues = Omit, 'id' | 'enabled' | 'createTool' | 'onToolChange' | 'children' >;