export interface LegendItem { label: string; /** The series color (from seriesFill / the chart-N tokens). */ color: string; /** Optional right-aligned secondary text (e.g. "42%"). */ detail?: string; } export interface ChartLegendProps { items: LegendItem[]; /** Lay items out as a wrapping row (multi-series cartesian charts) instead of a column. */ horizontal?: boolean; } export declare function ChartLegend({ items, horizontal }: ChartLegendProps): import("react").JSX.Element; //# sourceMappingURL=chart-legend.d.ts.map