import { SwipeOptions } from '@maz-ui/utils/helpers/swipeHandler'; import { MaybeRef } from 'vue'; export declare function useSwipe(options: Omit & { element: MaybeRef | string | null | undefined; }): { xDiff: import('vue').Ref; yDiff: import('vue').Ref; xStart: import('vue').Ref; xEnd: import('vue').Ref; yStart: import('vue').Ref; yEnd: import('vue').Ref; start: () => void; stop: () => void; };