import type { IUniform, Texture } from 'three'; import type { IShader } from './types'; export declare type HorizontalBlurShaderUniforms = { tDiffuse: IUniform; h: IUniform; }; export interface IHorizontalBlurShader extends IShader { } export declare const HorizontalBlurShader: IHorizontalBlurShader;