import type { IUniform, Texture } from 'three'; import type { IShader } from './types'; export declare type GammaCorrectionShaderUniforms = { tDiffuse: IUniform; }; export interface IGammaCorrectionShader extends IShader { } export declare const GammaCorrectionShader: IGammaCorrectionShader;