import type { ColorNode } from './types.js'; /** Options for {@link createRadialBlur}. */ export interface RadialBlurOptions { weight?: number; decay?: number; exposure?: number; count?: number; } /** Wrap a radialBlur node that streaks the image outward from centre for a speed / hyperspace look. @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createRadialBlur(input: ColorNode, options?: RadialBlurOptions): import("three/webgpu").Node; //# sourceMappingURL=radial-blur.d.ts.map