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, SetOptional>, PresenceStrategyProps { } declare const ColorPickerRoot: import("svelte").Component; type ColorPickerRoot = ReturnType; export default ColorPickerRoot;