import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class LineSopParamsConfig extends NodeParamsConfig { /** @param length of the line */ length: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of points */ pointsCount: import("../utils/params/ParamsConfig").ParamTemplate; /** @param start position of the line */ origin: import("../utils/params/ParamsConfig").ParamTemplate; /** @param direction of the line */ direction: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class LineSopNode extends TypedSopNode { params_config: LineSopParamsConfig; static type(): string; initializeNode(): void; cook(): void; } export {};