import { CarouselEmits, CarouselProps } from './interface'; declare const useProvideCarousel: (args_0: CarouselProps, emits: CarouselEmits) => { carouselRef: import('vue').Ref; carouselApi: import('vue').Ref; canScrollPrev: import('vue').Ref; canScrollNext: import('vue').Ref; scrollPrev: () => void; scrollNext: () => void; orientation: "vertical" | "horizontal" | undefined; }; declare function useCarousel(): { carouselRef: import('vue').Ref; carouselApi: import('vue').Ref; canScrollPrev: import('vue').Ref; canScrollNext: import('vue').Ref; scrollPrev: () => void; scrollNext: () => void; orientation: "vertical" | "horizontal" | undefined; }; export { useCarousel, useProvideCarousel };