import type { SetupContext } from 'vue'; import type { CarouselItemContext } from 'element-plus/es/tokens'; import type { CarouselEmits, CarouselProps } from './carousel'; export declare const useCarousel: (props: CarouselProps, emit: SetupContext['emit'], componentName: string) => { root: import("vue").Ref; activeIndex: import("vue").Ref; arrowDisplay: import("vue").ComputedRef; hasLabel: import("vue").ComputedRef; hover: import("vue").Ref; isCardType: import("vue").ComputedRef; items: import("vue").ShallowRef; handleButtonEnter: (arrow: 'left' | 'right') => void; handleButtonLeave: () => void; handleIndicatorClick: (index: number) => void; handleMouseEnter: () => void; handleMouseLeave: () => void; setActiveItem: (index: number | string) => void; prev: () => void; next: () => void; throttledArrowClick: import("lodash").DebouncedFunc<(index: number) => void>; throttledIndicatorHover: import("lodash").DebouncedFunc<(index: number) => void>; };