compote-ui
Version:
An opinionated UI component library for Svelte, built on top of [Ark UI](https://ark-ui.com) with additional components and features not available in the core Ark UI library.
10 lines (9 loc) • 397 B
TypeScript
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;