import { FC } from 'react'; import { InputProps } from '../input'; export interface ColorPickerInputProps extends Omit { defaultValue?: string; value?: string; /** 输入的颜色符合颜色正确值才触发 */ onChange?: (value: string) => void; /** 模式,色值模式或 rgb 模式,不设置时两种都支持 */ mode?: 'hex' | 'rgb'; } declare const ColorPickerInput: FC; export default ColorPickerInput;