import type { IndicatorProps } from '@zag-js/carousel';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface CarouselIndicatorProps extends Merge<HtmlIngredientProps<'button', HTMLButtonElement>, IndicatorProps> {
}
declare const CarouselIndicator: import("svelte").Component<CarouselIndicatorProps, {}, "ref">;
type CarouselIndicator = ReturnType<typeof CarouselIndicator>;
export default CarouselIndicator;
