import { USEHandler } from './types'; import { Ref } from 'vue'; /** * 操作 */ export declare const useHandler: ({ props, emit, modelValue }: USEHandler.Option) => { currentValue: Ref; onTouchstart: (e: TouchEvent) => void; onTouchmove: (e: TouchEvent) => void; onTouchend: (e: TouchEvent) => void; onMousedown: (e: MouseEvent) => void; };