import { default as React } from 'react'; type Props = { onPick: (color: string) => void; }; declare const ColorPicker: React.FC; export default ColorPicker;