import React, { FC } from 'react'; import { IColor } from 'react-color-palette'; import { box, flex } from '../../utility/box'; export type PropsType = typeof box.props & typeof flex.props & { color: string; transparentSwatch?: boolean; onChange(value: IColor): void; }; declare const ColorPicker: FC>; export default ColorPicker;