import type { DisplayObjectConfig } from '@antv/g'; import type { ProceduralGeometry as GGeometry, PlaneGeometryProps } from '@antv/g-plugin-3d'; import type { BaseNode3DStyleProps } from './base-node-3d'; import { BaseNode3D } from './base-node-3d'; /** * 平面节点样式 * * Plane Node Style Props */ export type PlaneStyleProps = BaseNode3DStyleProps & PlaneGeometryProps; /** * 平面节点 * * Plane Node */ export declare class Plane extends BaseNode3D { static defaultStyleProps: Partial; constructor(options: DisplayObjectConfig); protected getGeometry(attributes: Required): GGeometry; }