import { CarouselProps } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = CarouselProps; type __VLS_ModelProps = { modelValue?: number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: number) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: number) => any) | undefined; }>, { height: string | number; items: string[]; speed: number; indicator: boolean; indicatorPosition: "top" | "bottom" | "left" | "right" | "outside"; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;