/** * Creates a plane. * * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class PlaneSopParamsConfig extends NodeParamsConfig { /** @param size of the plane */ size: import("../utils/params/ParamsConfig").ParamTemplate; /** @param defines if the plane resolution is sets via the number of segments or via the step size */ useSegmentsCount: import("../utils/params/ParamsConfig").ParamTemplate; /** @param step size */ stepSize: import("../utils/params/ParamsConfig").ParamTemplate; /** @param segments count */ segments: import("../utils/params/ParamsConfig").ParamTemplate; /** @param axis perpendicular to the plane */ direction: import("../utils/params/ParamsConfig").ParamTemplate; /** @param center of the plane */ center: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class PlaneSopNode extends TypedSopNode { params_config: PlaneSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): void; } export {};