import { LabelProps } from 'recharts'; import { ValueLabelOptions } from './types'; export type ValueLabelProps = LabelProps & { unit: string; options?: ValueLabelOptions; precision?: number; language?: string; valuesFormatterFn?: (value: number) => string; }; export declare const ValueLabel: (props: ValueLabelProps) => import("react/jsx-runtime").JSX.Element;