ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 364 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface CarouselProgressTextProps extends HtmlIngredientProps<'span', HTMLSpanElement> {
}
declare const CarouselProgressText: import("svelte").Component<CarouselProgressTextProps, {}, "ref">;
type CarouselProgressText = ReturnType<typeof CarouselProgressText>;
export default CarouselProgressText;