import type { CoreEditor } from "../Editor";
import type { BaseTool } from "./Tool";
export declare class HandTool implements BaseTool {
    private readonly editor;
    private readonly dragBehavior;
    constructor(editor: CoreEditor);
    private handleDragStart;
    private handleDragging;
    private handleDragEnd;
    destroy(): void;
}
