import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; export declare const carouselProps: { readonly initialIndex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly height: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly trigger: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly autoplay: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly interval: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly indicatorPosition: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly arrow: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly type: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly cardScale: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly loop: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly direction: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly pauseOnHover: import("@hd-front-end/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 type CarouselProps = ExtractPropTypes; export type CarouselPropsPublic = __ExtractPublicPropTypes; export type CarouselEmits = typeof carouselEmits;