/** * Sets the draw range of the input geometry. * * @remarks * This can be useful when hiding part of an object with very little performance overhead. * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class DrawRangeSopParamsConfig extends NodeParamsConfig { /** @param start of the draw range */ start: import("../utils/params/ParamsConfig").ParamTemplate; /** @param defines if count is used */ useCount: import("../utils/params/ParamsConfig").ParamTemplate; /** @param number of items in the draw range */ count: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class DrawRangeSopNode extends TypedSopNode { params_config: DrawRangeSopParamsConfig; static type(): string; initializeNode(): void; cook(input_contents: CoreGroup[]): void; } export {};