import { ChartBaseProps } from './Chart'; export interface LineSeries { /** Field name holding this series' measure. */ key: string; name: string; color?: string; } export interface LineChartProps extends ChartBaseProps { /** Field name holding the category or time label. */ xKey: string; series: readonly LineSeries[]; title?: string; } export declare function LineChart({ xKey, series, title, ...rest }: LineChartProps): import("react").JSX.Element;