import { BlendFunction, Effect } from 'postprocessing'; export interface DitheringEffectOptions { blendFunction?: BlendFunction; } export declare const ditheringOptionsDefaults: { blendFunction: BlendFunction; }; export declare class DitheringEffect extends Effect { constructor(options?: DitheringEffectOptions); }