import * as THREE from 'three'; import type { ColorNode } from './types.js'; /** Options for {@link createChromaticAberration}. */ export interface ChromaticAberrationOptions { strength?: number; center?: THREE.Vector2; scale?: number; } /** Wrap a ChromaticAberrationNode that splits R/G/B radially from a configurable centre for a lens-fringing look. @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createChromaticAberration(input: ColorNode, options?: ChromaticAberrationOptions): import("three/addons/tsl/display/ChromaticAberrationNode.js").default; //# sourceMappingURL=ca.d.ts.map