export declare const useLongPress: (callback?: () => void, ms?: number) => {
    onPointerDown: (e: React.PointerEvent) => void;
    onPointerUp: () => void;
    onPointerLeave: () => void;
    onPointerCancel: () => void;
    onPointerMove: (e: React.PointerEvent) => void;
};
