import type { IPieSeriesSpec } from '../../series/pie/interface'; import type { IIndicatorSpec } from '../../component/indicator/interface'; import type { IChartExtendsSeriesSpec, IChartSpec } from '../../typings/spec/common'; export interface IPieChartSpec extends IChartSpec, IChartExtendsSeriesSpec { type: 'pie'; indicator?: IIndicatorSpec | IIndicatorSpec[]; }