import type { IAreaChartSpec } from '../../chart/area/interface';
import type { IBarChartSpec, IBar3dChartSpec } from '../../chart/bar/interface';
import type { IBoxPlotChartSpec } from '../../chart/box-plot/interface';
import type { ICirclePackingChartSpec } from '../../chart/circle-packing/interface';
import type { ICommonChartSpec } from '../../chart/common/interface';
import type { IFunnelChartSpec, IFunnel3dChartSpec } from '../../chart/funnel/interface';
import type { IGaugeChartSpec } from '../../chart/gauge/interface';
import type { IHeatmapChartSpec } from '../../chart/heatmap/interface';
import type { IHistogramChartSpec, IHistogram3dChartSpec } from '../../chart/histogram/interface';
import type { ILineChartSpec } from '../../chart/line/interface';
import type { IMapChartSpec } from '../../chart/map/interface';
import type { IPieChartSpec, IPie3dChartSpec } from '../../chart/pie/interface';
import type { ICircularProgressChartSpec } from '../../chart/progress/circular/interface';
import type { ILinearProgressChartSpec } from '../../chart/progress/linear/interface';
import type { IRadarChartSpec } from '../../chart/radar/interface';
import type { IRangeAreaChartSpec } from '../../chart/range-area/interface';
import type { IRangeColumnChartSpec, IRangeColumn3dChartSpec } from '../../chart/range-column/interface';
import type { IRoseChartSpec } from '../../chart/rose/interface';
import type { ISankeyChartSpec } from '../../chart/sankey/interface';
import type { IScatterChartSpec } from '../../chart/scatter/interface';
import type { ISequenceChartSpec } from '../../chart/sequence/interface';
import type { ISunburstChartSpec } from '../../chart/sunburst/interface';
import type { ITreemapChartSpec } from '../../chart/treemap/interface';
import type { IWaterfallChartSpec } from '../../chart/waterfall/interface';
import type { ICorrelationChartSpec } from '../../chart/correlation/interface';
import type { IWordCloudChartSpec, IWordCloud3dChartSpec } from '../../chart/word-cloud/interface';
import type { IChartSpec } from './common';
import type { ILiquidChartSpec } from '../../chart/liquid/interface';
export interface ChartSpecMap {
    readonly common: ICommonChartSpec;
    readonly area: IAreaChartSpec;
    readonly line: ILineChartSpec;
    readonly bar: IBarChartSpec;
    readonly bar3d: IBar3dChartSpec;
    readonly histogram: IHistogramChartSpec;
    readonly histogram3d: IHistogram3dChartSpec;
    readonly rangeColumn: IRangeColumnChartSpec;
    readonly rangeColumn3d: IRangeColumn3dChartSpec;
    readonly rangeArea: IRangeAreaChartSpec;
    readonly map: IMapChartSpec;
    readonly pie: IPieChartSpec;
    readonly pie3d: IPie3dChartSpec;
    readonly radar: IRadarChartSpec;
    readonly rose: IRoseChartSpec;
    readonly scatter: IScatterChartSpec;
    readonly sequence: ISequenceChartSpec;
    readonly circleProgress: ICircularProgressChartSpec;
    readonly linearProgress: ILinearProgressChartSpec;
    readonly wordCloud: IWordCloudChartSpec;
    readonly wordCloud3d: IWordCloud3dChartSpec;
    readonly funnel: IFunnelChartSpec;
    readonly funnel3d: IFunnel3dChartSpec;
    readonly waterfall: IWaterfallChartSpec;
    readonly boxplot: IBoxPlotChartSpec;
    readonly gauge: IGaugeChartSpec;
    readonly sankey: ISankeyChartSpec;
    readonly treemap: ITreemapChartSpec;
    readonly sunburst: ISunburstChartSpec;
    readonly circlePacking: ICirclePackingChartSpec;
    readonly heatmap: IHeatmapChartSpec;
    readonly correlation: ICorrelationChartSpec;
    readonly liquid: ILiquidChartSpec;
}
export type ISpec = ChartSpecMap[keyof ChartSpecMap] | IChartSpec;
