import type { CarouselIndicatorProps } from '@ark-ui/svelte/carousel';
import type { Snippet } from 'svelte';
type $$ComponentProps = CarouselIndicatorProps & {
    children?: Snippet;
    thumbnail?: boolean;
};
declare const CarouselIndicator: import("svelte").Component<$$ComponentProps, {}, "">;
type CarouselIndicator = ReturnType<typeof CarouselIndicator>;
export default CarouselIndicator;
