import * as _yamada_ui_core from '@yamada-ui/core'; import { HTMLUIProps } from '@yamada-ui/core'; import { InputProps } from '@yamada-ui/input'; import { ReactNode } from 'react'; interface ColorSelectorChannelsOptions { /** * Props for the chancel component. */ channelProps?: Omit; } interface ColorSelectorChannelsProps extends Omit, ColorSelectorChannelsOptions { } declare const ColorSelectorChannels: _yamada_ui_core.Component<"div", ColorSelectorChannelsProps>; interface ColorSelectorChannelOptions { channelLabel?: ReactNode; } type ColorSelectorChannelProps = ColorSelectorChannelOptions & Omit; declare const ColorSelectorChannel: _yamada_ui_core.Component<"input", ColorSelectorChannelProps>; export { ColorSelectorChannel, type ColorSelectorChannelProps, ColorSelectorChannels, type ColorSelectorChannelsProps };