import { BaseArcMark } from '@visactor/vchart'; import { MarkType3dEnum } from './enum'; import type { IArc3dMark, IArc3dMarkSpec } from './interface'; export declare class Arc3dMark extends BaseArcMark implements IArc3dMark { static readonly type = MarkType3dEnum.arc3d; readonly type = MarkType3dEnum.arc3d; setDataLabelType(): string; constructor(name: string, option: any); setMarkConfig(config: any): void; } export declare const registerArc3dMark: () => void;