import { SxProps, Theme } from '@mui/material'; import { BarsOptions } from './useBars'; import { Improvement } from '../../ComparisonBlock/ComparisonBlock'; import { TextOptions } from './TrajectoryLegend/types'; export type TrajectoryChartProps = BarsOptions & { unit?: string; width?: string; height?: string; showLegend?: boolean; improvement?: Improvement; urlEditTrajectories?: string; valueFormatterFn?: (value: number, precision?: number) => string; precision?: number; textOptions: TextOptions; forceGoalLegend?: boolean; sx?: SxProps; }; export declare const TrajectoryChart: (props: TrajectoryChartProps) => import("react/jsx-runtime").JSX.Element;