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