import type { Ref } from 'vue'; import type VueFinalModal from './components/VueFinalModal/VueFinalModal.vue'; export declare function useSwipeToClose(props: InstanceType['$props'], options: { vfmContentEl: Ref; modelValueLocal: Ref; }): { vfmContentEl: Ref; swipeBannerEl: Ref; bindSwipe: import("vue").ComputedRef<{ class: { 'vfm-bounce-back': boolean; }; style: { transform: string; }; } | undefined>; onTouchStartSwipeBanner: (e: TouchEvent) => void; };