import React from "react"; import { InputProps } from "../input"; import { ColorPickerProps } from "../color-picker"; import { ButtonProps } from "../button"; interface Props extends Omit { onChange: (value?: string) => void; pickButton?: ButtonProps; modal?: ColorPickerProps["modal"]; } declare const InputColorPicker: (props: Props) => React.JSX.Element; export default InputColorPicker;