import type { LineConfig } from '@ant-design/plots'; import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; export type LineDataItem = { time: string | number; value: number; [key: string]: string | number; }; export type LineProps = BasePlotProps & Partial & Theme & Style; declare const Line: (props: LineProps) => React.JSX.Element; export default Line;