import type { Data3DTexture } from 'three'; import type { ColorNode } from './types.js'; /** Options for {@link createLut}. */ export interface LutOptions { lut: Data3DTexture; intensity?: number; } /** Wrap a Lut3DNode that remaps colours through a loaded 3D LUT (.cube/.3dl/.png). Apply on tone-mapped display-space colour. @remarks Requires the WebGPU renderer (three/webgpu) and ships via the 'threejs-scenes/webgpu' entry point. */ export declare function createLut(input: ColorNode, options: LutOptions): import("three/addons/tsl/display/Lut3DNode.js").default; //# sourceMappingURL=lut.d.ts.map