import React from "react"; interface LineChartProps { data: { c: string[]; t: string[]; }; width: number; height: number; stroke: string; strokeWidth?: number; step?: number; symbol?: string; opacity?: boolean; id?: string; /** *选中当前的行/交易对 */ onClick?: (event?: React.MouseEvent) => void; } declare function LineChart(props: LineChartProps): JSX.Element; export default LineChart;