import type { ExtractPropTypes } from 'vue'; export declare const carouselProps: { readonly initialIndex: import("element-plus/es/utils").EpPropFinalized; readonly height: import("element-plus/es/utils").EpPropFinalized; readonly trigger: import("element-plus/es/utils").EpPropFinalized; readonly autoplay: import("element-plus/es/utils").EpPropFinalized; readonly interval: import("element-plus/es/utils").EpPropFinalized; readonly indicatorPosition: import("element-plus/es/utils").EpPropFinalized; readonly arrow: import("element-plus/es/utils").EpPropFinalized; readonly type: import("element-plus/es/utils").EpPropFinalized; readonly cardScale: import("element-plus/es/utils").EpPropFinalized; readonly loop: import("element-plus/es/utils").EpPropFinalized; readonly direction: import("element-plus/es/utils").EpPropFinalized; readonly pauseOnHover: import("element-plus/es/utils").EpPropFinalized; readonly motionBlur: BooleanConstructor; }; export declare const carouselEmits: { /** * @description triggers when the active slide switches * @param current index of the new active slide * @param prev index of the old active slide */ change: (current: number, prev: number) => boolean; }; export declare type CarouselProps = ExtractPropTypes; export declare type CarouselEmits = typeof carouselEmits;