ui-ingredients
Version:
Headless component library for Svelte powered by zag
9 lines (8 loc) • 626 B
TypeScript
import type { PresenceStrategyProps } from '../presence/create-presence.svelte.js';
import type { Assign, HtmlIngredientProps, Optional } from '../types.js';
import type { CreateColorPickerProps, CreateColorPickerReturn } from './create-color-picker.svelte.js';
export interface ColorPickerProps extends Assign<HtmlIngredientProps<'div', HTMLDivElement, CreateColorPickerReturn>, Optional<CreateColorPickerProps, 'id'>>, PresenceStrategyProps {
}
declare const ColorPickerRoot: import("svelte").Component<ColorPickerProps, {}, "ref">;
type ColorPickerRoot = ReturnType<typeof ColorPickerRoot>;
export default ColorPickerRoot;