import * as THREE from 'three'; import type { Node } from 'three/webgpu'; /** Options for {@link createRetroPass}. */ export interface RetroOptions { affineDistortion?: Node | null; filterTextures?: boolean; } /** Wrap a retroPass PassNode that emulates 5th-gen console rendering: low resolution, vertex snapping, and affine texture distortion. Use INSTEAD of a plain scene pass. @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createRetroPass(scene: THREE.Scene, camera: THREE.Camera, options?: RetroOptions): import("three/addons/tsl/display/RetroPassNode.js").default; //# sourceMappingURL=retro.d.ts.map