import type { IUniform, Texture } from 'three'; import type { IShader } from './types'; export declare type VerticalBlurShaderUniforms = { tDiffuse: IUniform; v: IUniform; }; export interface IVerticalBlurShader extends IShader { } export declare const VerticalBlurShader: IVerticalBlurShader;