UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 350 B
import type { HtmlIngredientProps } from '../types.js'; export interface RatingGroupControlProps extends HtmlIngredientProps<'div', HTMLDivElement> { } declare const RatingGroupControl: import("svelte").Component<RatingGroupControlProps, {}, "ref">; type RatingGroupControl = ReturnType<typeof RatingGroupControl>; export default RatingGroupControl;