import { ComparisonLabelOptions, DataPoint } from './types'; import { LabelProps } from 'recharts'; export type ComparisonLabelProps = LabelProps & { unit: string; data: DataPoint[]; chartWidth?: number; options?: ComparisonLabelOptions; precision?: number; language?: string; improvementType?: "increase" | "decrease"; chartHeight?: number; }; export declare const ComparisonLabel: (props: ComparisonLabelProps) => import("react/jsx-runtime").JSX.Element | null;