import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import type { LineOptions } from '../../core'; import type { Chart, CommonConfig } from '../../interface'; export type LineConfig = CommonConfig; declare const LineChart: ForwardRefExoticComponent & RefAttributes>; export default LineChart;