import { CUTBOXINFO } from '../types/index';
declare class ToolPanel {
    createToolDom(clickEvent: (e: MouseEvent) => void, zIndex: number): HTMLDivElement;
    /**
     * @func 参照剪裁框位置信息设置工具栏位置
     * @desc
     * @param {
     *   toolsDom 工具栏dom
     *   cutBoxInfo 剪裁框信息
     *   drawWidth 、 drawHeight  截屏宽高 用于做限制处理
     *   isShow 是否需要展示
     * }
     * @return {}
     */
    setToolsPosition(toolsDom: HTMLElement, cutBoxInfo: CUTBOXINFO, drawWidth: number, drawHeight: number, isShow?: boolean): void;
}
declare const _default: ToolPanel;
export default _default;
