import { AreaProps, ChannelProps, ColorPickerProps, SwatchProps, SwatchTriggerProps, TransparencyGridProps } from './color-picker.types.js'; import '@zag-js/color-utils'; import '@zag-js/core'; import '@zag-js/dismissable'; import '@zag-js/popper'; import '@zag-js/types'; declare const props: (keyof ColorPickerProps)[]; declare const splitProps: >(props: Props) => [Partial, Omit]; declare const areaProps: (keyof AreaProps)[]; declare const splitAreaProps: (props: Props) => [AreaProps, Omit]; declare const channelProps: (keyof ChannelProps)[]; declare const splitChannelProps: (props: Props) => [ChannelProps, Omit]; declare const swatchTriggerProps: (keyof SwatchTriggerProps)[]; declare const splitSwatchTriggerProps: (props: Props) => [SwatchTriggerProps, Omit]; declare const swatchProps: (keyof SwatchProps)[]; declare const splitSwatchProps: (props: Props) => [SwatchProps, Omit]; declare const transparencyGridProps: "size"[]; declare const splitTransparencyGridProps: (props: Props) => [TransparencyGridProps, Omit]; export { areaProps, channelProps, props, splitAreaProps, splitChannelProps, splitProps, splitSwatchProps, splitSwatchTriggerProps, splitTransparencyGridProps, swatchProps, swatchTriggerProps, transparencyGridProps };