import type { HtmlIngredientProps } from '../types.js';
export interface ColorPickerValueSwatchProps extends HtmlIngredientProps<'div', HTMLDivElement> {
    respectAlpha?: boolean;
}
declare const ColorPickerValueSwatch: import("svelte").Component<ColorPickerValueSwatchProps, {}, "ref">;
type ColorPickerValueSwatch = ReturnType<typeof ColorPickerValueSwatch>;
export default ColorPickerValueSwatch;
