import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; import type { IndicatorProps } from '@zag-js/carousel'; export interface CarouselIndicatorProps extends IndicatorProps, PropsWithElement<'button'>, HTMLAttributes<'button'> { } declare const Indicator: import("svelte").Component; type Indicator = ReturnType; export default Indicator;