import { USEBtns } from './types'; import { Ref } from 'vue'; /** * 移动列 */ export declare const useHandMove: () => { listData: Ref; distance: Ref; duration: Ref; currentValue: string[]; onTouchstart: (e: TouchEvent, i: number) => void; onTouchmove: (e: TouchEvent, i: number) => void; onTouchend: (e: TouchEvent, i: number) => void; onMousedown: (e: MouseEvent, i: number) => void; }; /** * 按钮 */ export declare const useBtns: ({ props, emit, currentValue, modelValue }: USEBtns.Option) => { onCancel: () => void; onSure: () => void; };