import { Ref } from 'vue'; export declare const useCarousel: (props: { items: any[]; infinite: boolean; }, currentSlide: Ref) => { doShowPrevButton: import("vue").ComputedRef; doShowNextButton: import("vue").ComputedRef; doShowDirectionButtons: import("vue").ComputedRef; goTo: (index: number) => void; prev: () => void; next: () => void; };