interface Props { x: number; y: number; /** Called with new position in pixels (relative to container). */ onChange: (x: number, y: number) => void; containerWidth: number; containerHeight: number; } /** * Absolutely-positioned draggable corner handle. * Position is in CSS pixels relative to the nearest `position: relative` ancestor. */ export declare function DragHandle({ x, y, onChange, containerWidth, containerHeight }: Props): import("react").JSX.Element; export {};