import type { IPolarAxisSpec } from '../../component/axis/polar/interface'; import type { IGaugePointerSeriesSpec, IGaugeSeriesSpec } from '../../series/gauge/interface'; import type { ILinearAxisSpec } from '../../component/axis/interface'; import type { ICircularProgressSeriesSpec } from '../../series/progress/circular/interface'; import type { IPolarChartSpec } from '../polar/interface'; export interface IGaugeChartSpec extends Omit, Omit { type: 'gauge'; gauge?: Omit | Omit; axes?: (IPolarAxisSpec | ILinearAxisSpec)[]; }