import { FC } from 'react'; import { IDonutItem } from '../Donut'; export interface DonutLegendProps { /** overwrite className */ className?: string; /** data */ data: IDonutItem[]; /** Overwrite total label */ totalLabel?: string; /** Show or not the total label */ showTotal?: boolean; } declare const DonutLegend: FC; export default DonutLegend;