import { IMapToolProps } from "geovisto"; import { IToolDataProps } from "./IComponentTool"; export declare type ICustomToolProps = IToolDataProps & any & { createTool: (props: unknown) => unknown; }; export declare type ICustomToolPropsValues = Omit, 'id' | 'enabled' | 'createTool' | 'onToolChange' | 'children'>;