ui-ingredients
Version:
Headless component library for Svelte powered by zag
10 lines (9 loc) • 665 B
TypeScript
import type { Merge, SetOptional } from 'type-fest';
import { type PresenceStrategyProps } from '../Presence/createPresence.svelte.js';
import type { HtmlIngredientProps } from '../types.js';
import { type CreateColorPickerProps, type CreateColorPickerReturn } from './createColorPicker.svelte.js';
export interface ColorPickerProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement, CreateColorPickerReturn>, SetOptional<CreateColorPickerProps, 'id'>>, PresenceStrategyProps {
}
declare const ColorPickerRoot: import("svelte").Component<ColorPickerProps, {}, "ref">;
type ColorPickerRoot = ReturnType<typeof ColorPickerRoot>;
export default ColorPickerRoot;