import type { IPyramid3dMark, IPyramid3dMarkSpec } from './interface'; import { MarkType3dEnum } from './enum'; import { BasePolygonMark } from '@visactor/vchart'; export declare class Pyramid3dMark extends BasePolygonMark implements IPyramid3dMark { static readonly type = MarkType3dEnum.pyramid3d; readonly type = MarkType3dEnum.pyramid3d; protected _getDefaultStyle(): import("@visactor/vchart").IMarkStyle; constructor(name: string, option: any); setMarkConfig(config: any): void; } export declare const registerPyramid3dMark: () => void;