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