import * as React from 'react'; interface Props { label: React.ReactNode; name: string; value?: string; onChange?: (e: { target: { value: string; }; }) => void; } declare const ColorPicker: (props: Props) => JSX.Element; export default ColorPicker;