import { PropsHookParam, Emits } from './types'; import { Ref, ComputedRef } from 'vue'; /** * 移动列 */ export declare const useHandMove: (props: Readonly, emit: Emits) => { swiperDom: Ref; dots: Ref; dotIndex: Ref; currentValue: Ref; isActive: Ref; onTouchstart: (e: TouchEvent) => void; onTouchmove: (e: TouchEvent) => void; onTouchend: (e: TouchEvent) => void; onMousedown: (e: MouseEvent) => void; }; /** * 样式 */ export declare const useStyle: (props: Readonly) => { renderStyle: ComputedRef>; className: Ref; };