import { Ref } from 'vue'; export declare const useCarouselAnimation: (props: { items: any[]; autoscrollInterval: number; autoscrollPauseDuration: number; autoscroll: boolean; infinite: boolean; effect: 'fade' | 'transition'; vertical: boolean; fadeKeyframe: string; }, currentSlide: Ref) => { start: () => void; pause: () => void; stop: () => void; withPause: any>(fn: T) => (...args: Parameters) => void; computedSlidesStyle: import("vue").ComputedRef<{ transition: string; } | { transform: string; }>; slides: import("vue").ComputedRef; };