export interface ChartLineProps {
    /** Which data key to visualize */
    dataKey: string;
    /** Line stroke color */
    color: string;
    /** Stroke width */
    strokeWidth?: number;
    /** Show dots at data points */
    dots?: boolean;
    /** Dot radius */
    dotRadius?: number;
}
/**
 * Line mark. Works with both band and linear x-scales.
 *
 * @example
 * ```
 * <ChartLine dataKey="trend" color={useChartColors().categorical(2)[1]} />
 * <ChartLine dataKey="trend" color="#0171E3" dots />
 * ```
 */
export declare function ChartLine({ dataKey, color, strokeWidth, dots, dotRadius, }: ChartLineProps): import("react").JSX.Element;
//# sourceMappingURL=ChartLine.d.ts.map