import * as React from "react"; export interface LineChartProps { /** * The data for the LineChart */ data: Array; /** * The data keys for the LineChart */ dataKeys: Array; /** * The strokes for the LineChart */ strokes: Array; /** * The title for the LineChart */ title: string; } /** * @private */ export declare const LineChart: React.FC;