import * as THREE from 'three'; /** Options for {@link createSsaaPass}. */ export interface SsaaOptions { sampleLevel?: number; unbiased?: boolean; } /** Wrap an ssaaPass PassNode that renders the scene at 2^sampleLevel jittered subpixel offsets and averages them for reference-quality anti-aliasing. 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 createSsaaPass(scene: THREE.Scene, camera: THREE.Camera, options?: SsaaOptions): import("three/addons/tsl/display/SSAAPassNode.js").default; //# sourceMappingURL=ssaa.d.ts.map