import type { SwatchProps } from '@zag-js/color-picker';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface ColorPickerSwatchProps extends Merge<HtmlIngredientProps<'div', HTMLDivElement>, SwatchProps> {
}
declare const ColorPickerSwatch: import("svelte").Component<ColorPickerSwatchProps, {}, "ref">;
type ColorPickerSwatch = ReturnType<typeof ColorPickerSwatch>;
export default ColorPickerSwatch;
