import type { EchartWidgetData, EchartWidgetState } from '../echart' import type { EchartWidgetOptionProps, EchartWidgetProps, } from '../echart/types' import type { ConfigProps } from '../loader' export type PieWidgetData = EchartWidgetData export type PieWidgetState = EchartWidgetState export type PieWidgetConfig = EchartWidgetProps & { type: 'pie' } export type PieConfig = ConfigProps & EchartWidgetOptionProps