import { type FC, type MouseEvent } from 'react'; export interface LineChartLineProps { /** Joins to `LineChartSeries.key` from the root `series` prop. */ seriesKey: string; /** Recharts curve type. Defaults to `'monotone'`. */ curve?: 'linear' | 'monotone'; /** Force-disable the recharts mount animation. */ disableAnimation?: boolean; /** Recharts pass-through — when `true`, the line bridges `null`/`undefined` gaps. */ connectNulls?: boolean; /** Stroke width override. Defaults to `LINE_STROKE_WIDTH`. */ strokeWidth?: number; onClick?: (event: MouseEvent) => void; onMouseEnter?: (event: MouseEvent) => void; onMouseLeave?: (event: MouseEvent) => void; } export declare const LineChartLine: FC;