import { PieSeriesOption } from 'echarts'; import { DataItem, GenOptionsParams, GenSeriesParams, PieChartByGroupData } from './types'; import { ECOption } from './Pie'; export declare const getAllData: (props: PieChartByGroupData[]) => DataItem[]; export declare const genSeries: ({ dataArray, styleLabelLine, styleBorder, styleLabel, styleLabelLayout, center, }: GenSeriesParams) => PieSeriesOption[]; export declare const genOptions: ({ data, styleLabelLine, styleBorder, styleLabel, styleLabelLayout, options, center, }: GenOptionsParams) => ECOption;