type LegendItem = { label: string; color: string; }; type LegendContentProps = { items: LegendItem[]; textColor: string; className?: string; marginLeft?: number | string; marginTop?: number | string; }; export declare const LegendChartContent: ({ items, textColor, className, marginLeft, marginTop, }: LegendContentProps) => import("react/jsx-runtime").JSX.Element; export {};