import type { IMarkStyle } from '@visactor/vchart'; import { BaseMark } from '@visactor/vchart'; import type { IRect3dMark, IRect3dMarkSpec } from './interface'; import { MarkType3dEnum } from './enum'; export declare class Rect3dMark extends BaseMark implements IRect3dMark { static readonly type = MarkType3dEnum.rect3d; readonly type = MarkType3dEnum.rect3d; protected _getDefaultStyle(): IMarkStyle; setDataLabelType(): string; constructor(name: string, option: any); setMarkConfig(config: any): void; } export declare const registerRect3dMark: () => void;