import React from "react";
import { Point } from "./BezierCurveEditor";
export declare function useHandleState(moveHandle: (start: Point, coordinates: Point) => void, handleMoveStart: () => void): [
    boolean,
    Record<"handlePointerLeaveOrUp" | "handlePointerMove" | "handlePointerStartMoving", React.PointerEventHandler<HTMLButtonElement>>
];
