import { IndicatorProps } from '@zag-js/carousel'; import { ButtonHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { PolymorphicProps } from '../factory'; export interface CarouselIndicatorBaseProps extends IndicatorProps, PolymorphicProps { } export interface CarouselIndicatorProps extends CarouselIndicatorBaseProps, /** * @vue-ignore */ ButtonHTMLAttributes { } declare const _default: __VLS_WithTemplateSlots< DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };