import type { Node } from 'three/webgpu'; /** Options for {@link createTransition}. */ export interface TransitionOptions { mixRatio?: number; threshold?: number; useTexture?: number; } /** Wrap a TransitionNode that cross-fades two scene pass colour nodes, optionally masked by a wipe texture. @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createTransition(passA: Node, passB: Node, mixTexture: Node, options?: TransitionOptions): import("three/addons/tsl/display/TransitionNode.js").default; //# sourceMappingURL=transition.d.ts.map