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;
