import DrawTool from "./DrawTool";
import EditTool from "./EditTool";
/**
 * 注册绘制、编辑、测量工具
 * @ignore
 */
declare const createTools: () => {
    drawTool: DrawTool;
    editTool: EditTool;
};
export default createTools;
