import { ChangeEvent } from 'react'; declare type Props = { label?: string; placeholder?: string; error?: string | boolean | null; onTextChange: (e: ChangeEvent) => void; value: string; name: string; fontColor?: string; disabled?: boolean; defaultTheme?: boolean; }; declare const ColorInput: ({ name, label, placeholder, error, onTextChange, value, fontColor, disabled, defaultTheme, }: Props) => JSX.Element; export default ColorInput;