import type { IChartPlugin, IChartPluginService, VChartRenderActionSource } from '@visactor/vchart'; import { BasePlugin } from '@visactor/vchart'; export declare class VChart3dPlugin extends BasePlugin implements IChartPlugin { static readonly pluginType: 'chart'; static readonly type: string; readonly type: string; constructor(); protected _is3d?: boolean; onInit(service: IChartPluginService, chartSpec: any): void; onBeforeInitChart(service: IChartPluginService, chartSpec: any, actionSource: VChartRenderActionSource): void; } export declare const register3DPlugin: () => void;