/** * Shift the RGB components. * * */ import { TypedPostProcessNode, TypedPostNodeContext } from './_Base'; import { ShaderPass } from '../../../modules/three/examples/jsm/postprocessing/ShaderPass'; import { IUniformN } from '../utils/code/gl/Uniforms'; interface RGBShiftPassWithUniforms extends ShaderPass { uniforms: { amount: IUniformN; angle: IUniformN; }; } import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class RGBShiftPostParamsConfig extends NodeParamsConfig { /** @param effect amount */ amount: import("../utils/params/ParamsConfig").ParamTemplate; /** @param effect angle */ angle: import("../utils/params/ParamsConfig").ParamTemplate; } export declare class RGBShiftPostNode extends TypedPostProcessNode { params_config: RGBShiftPostParamsConfig; static type(): string; protected _create_pass(context: TypedPostNodeContext): RGBShiftPassWithUniforms; update_pass(pass: RGBShiftPassWithUniforms): void; } export {};