/// import type { CommonPropsType } from '../../../types'; import { DataSource, Xfield, Yfield } from '../common/core/type'; interface PropsType extends Omit { chartType?: string; isTitle?: boolean; title?: string; titleLocation?: string; dataSource?: DataSource; filterData?: string; setColor?: Array; xField?: Xfield; xStatistics?: string; xIsCountEmpty?: boolean; yField?: Yfield; isLegend?: boolean; legend?: string; legend2?: string; isSeriesShowSymbol?: boolean; isPercent?: boolean; isUnit?: boolean; unit?: number; decimalDigits?: number; suffix?: string; } export default function Line({ id, style, className, chartType, isTitle, title, titleLocation, dataSource, filterData, setColor, xField, xStatistics, xIsCountEmpty, yField, isLegend, legend, legend2, isSeriesShowSymbol, isPercent, isUnit, unit, decimalDigits, suffix, }: PropsType): JSX.Element; export {};