import { type RefObject } from 'react'; /** * Returns the current touches from the touch move event. * It possibly accepts a DOM ref representing the mouse target. * If a target is not provided the state will be caught globally. */ declare const useTouchState: (targetRef?: RefObject | undefined) => TouchList; export default useTouchState;