import { Uniform } from 'three';

export const SepiaShader: {
    uniforms: {
        tDiffuse: Uniform;
        amount: Uniform;
    };
    vertexShader: string;
    fragmentShader: string;
};
