import React from 'react'; import '../g.scss'; declare function ChartColorPick(props: IChartColorPick): React.JSX.Element; export default ChartColorPick; export interface IChartColorPick { title?: string; theme?: string; change?: Function; value?: IChartColors[]; } export interface IChartColors { title?: string; key?: string | number; color?: string; fillType?: string; isPure?: boolean; }