import * as React from 'react'; import { IDataPoint } from '../chart-datapoint-types'; interface ILegendDataPoint extends IDataPoint { percentage: number; } export interface ILegendProps { data: ILegendDataPoint[]; smallestToLargest: boolean; } export declare const Legend: React.ForwardRefExoticComponent<{ data: ILegendDataPoint[]; smallestToLargest: boolean; } & { theme?: import("styled-components").DefaultTheme | undefined; }>; export {}; //# sourceMappingURL=Legend.d.ts.map