import * as React from 'react'; export interface ChartLegendSeries { title: string; color: string; value: any; total: any; } export interface ChartLegendProps { series?: ChartLegendSeries[]; } export const ChartLegend: React.FC; export default ChartLegend;