import type { AdaptiveSpec } from '@visactor/vchart'; import { BasePieChart } from '@visactor/vchart'; import type { IPie3dChartSpec } from './interface'; import { Pie3dChartSpecTransformer } from './chart-spec-transformer'; export declare class Pie3dChart extends BasePieChart> { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof Pie3dChartSpecTransformer; readonly transformerConstructor: typeof Pie3dChartSpecTransformer; readonly type: string; readonly seriesType: string; } export declare const registerPie3dChart: () => void;