import type { ECOption } from './echarts'; import type { IDataInputItem, IChartInput, IPieChartInput, IChartType, PropsType } from './types'; export declare const checkIsNewData: (props: PropsType) => boolean; export declare function transform(chartType: 'pie', dataInput: Readonly, chartInput: IPieChartInput): ECOption & { color: string[]; }; export declare function transform(chartType: 'bar' | 'line', dataInput: Readonly, chartInput: IChartInput): ECOption; export declare function transform(chartType: IChartType, dataInput: Readonly, chartInput: Readonly): ECOption;