import { TThemeArrayOrValueCSS } from '../../../design/designFunctions/arrayToCssValues'; import { default as Color } from 'color'; import { CSSProp } from 'styled-components'; type ColorType = ReturnType; export type TColorArea = { colorValue?: ColorType | string; borderRadius?: TThemeArrayOrValueCSS; hue?: number; handler?: (color: ColorType) => void; externalStyle?: CSSProp; }; export type TColorAreaWithHTMLAttrs = TColorArea & React.HTMLAttributes; export {};