import type { BaseMode } from '@antv/l7-draw'; import type { DrawData } from '../types'; import type { UseDrawParams } from './types'; export declare const useDraw: (params: UseDrawParams) => { enable: any; disable: any; getDrawData: any; drawType: "circle" | "line" | "polygon" | "rect" | "point"; draw: BaseMode>>; drawData: DrawData; setDrawData: (newData: DrawData) => void; isEnable: boolean; };