import React from 'react'; export interface propsLineChart { width?: number; height?: number; image?: string; lang?: string; fromRange?: string; toRange?: string; fromDate?: string; toDate?: string; labelNoData?: string; metrics?: Array<{ name?: string; label?: string; }>; payload?: { time: string; }; style?: any; isCompare?: boolean; xAxisKey?: string; lineColor?: Array; compareData?: Array>; data?: Array<{ date?: string; conv_rate?: number; click?: number; }> | []; lineCompareColor?: Array; onError?: (error: any, payload: Record) => void; } declare const LineChartComponent: React.FunctionComponent; export default LineChartComponent;