/// interface Props { name: string; label?: string; placeholder?: string; returnType?: 'key' | 'option'; } declare type ColorPickerProps = JSX.IntrinsicElements['input'] & Props; export declare function ColorPicker({ name, label, disabled, placeholder, returnType, }: ColorPickerProps): JSX.Element; export {};