/** * Allows to edit properties of textures in the used materials. * * * */ import { TypedSopNode } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TexturePropertiesSopParamsConfig extends NodeParamsConfig { /** @param sets if this node should search through the materials inside the whole hierarchy */ applyToChildren: import("../utils/params/ParamsConfig").ParamTemplate; separator: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update the anisotropy */ tanisotropy: import("../utils/params/ParamsConfig").ParamTemplate; /** @param sets if the anisotropy should be set to the max capabilities of the renderer */ useRendererMaxAnisotropy: import("../utils/params/ParamsConfig").ParamTemplate; /** @param anisotropy value */ anisotropy: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update min filter */ tminFilter: import("../utils/params/ParamsConfig").ParamTemplate; /** @param min filter value */ minFilter: import("../utils/params/ParamsConfig").ParamTemplate; /** @param toggle on to update mag filter */ tmagFilter: import("../utils/params/ParamsConfig").ParamTemplate; /** @param mag filter value */ magFilter: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class TexturePropertiesSopNode extends TypedSopNode { params_config: TexturePropertiesSopParamsConfig; static type(): string; static displayedInputNames(): string[]; initializeNode(): void; private _operation; cook(input_contents: CoreGroup[]): Promise; } export {};