import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; declare class HeightMapSopParamsConfig extends NodeParamsConfig { /** @param texture node to load the heightmap from */ texture: import("../utils/params/ParamsConfig").ParamTemplate; /** @param values multiplier */ mult: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class HeightMapSopNode extends TypedSopNode { params_config: HeightMapSopParamsConfig; static type(): string; initializeNode(): void; cook(input_contents: CoreGroup[]): Promise; private _set_position_from_data_texture; private _data_from_texture; private _data_from_default_texture; private _data_from_data_texture; } export {};