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