interface Props { /** CSS-pixel position of the handle center, relative to the crop-inner container. */ x: number; y: number; /** Controls cursor style and handle orientation only — movement is unconstrained (delta-based). */ axis: "x" | "y"; /** Called with the pointer delta in CSS pixels so both corners can be shifted equally. */ onChange: (dx: number, dy: number) => void; } /** * Absolutely-positioned draggable edge handle. * Tracks the pointer delta so both corners on this edge move by the same amount, * preserving the edge angle. */ export declare function EdgeHandle({ x, y, axis, onChange }: Props): import("react").JSX.Element; export {};