import React from 'react'; interface PointDragProps { children: React.ReactNode; onMoveStart?: () => void; onMove?: ({ movementX }: { movementX: number; }) => void; onMoveEnd?: ({ movementX }: { movementX: number; }) => void; } export declare function PointerDrag({ children, onMoveStart, onMove, onMoveEnd, }: PointDragProps): import("react/jsx-runtime").JSX.Element; export {};