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.
9 lines (8 loc) • 402 B
TypeScript
import type { CarouselIndicatorGroupProps } from '@ark-ui/svelte/carousel';
import type { Snippet } from 'svelte';
type $$ComponentProps = CarouselIndicatorGroupProps & {
children?: Snippet;
};
declare const CarouselIndicatorGroup: import("svelte").Component<$$ComponentProps, {}, "">;
type CarouselIndicatorGroup = ReturnType<typeof CarouselIndicatorGroup>;
export default CarouselIndicatorGroup;