import { SwatchProps } from '@zag-js/color-picker'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface ValueSwatchProps extends Omit { } export interface ColorPickerValueSwatchBaseProps extends ValueSwatchProps, PolymorphicProps { } export interface ColorPickerValueSwatchProps extends HTMLProps<'div'>, ColorPickerValueSwatchBaseProps { } export declare const ColorPickerValueSwatch: ForwardRefExoticComponent>; export {};