import React from 'react'; import { XAxisProps, YAxisProps } from 'recharts'; import { CurveType } from 'recharts/types/shape/Curve'; import { Margin } from 'recharts/types/util/types'; export interface ILine { type?: CurveType; dataKey?: string; stroke?: string; strokeWidth?: string | number; connectNulls?: boolean; } export type LineGraphProps = { margin?: Margin; data: Record[]; gridStrokeWidth?: string | number; xAxisProps?: Pick; yAxisProps?: Pick; CustomTooltip?: any; lines: ILine[]; isTooltipEnabled?: boolean; }; declare const _default: React.MemoExoticComponent<(props: LineGraphProps) => React.JSX.Element>; export default _default;