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