import { EffectBase } from "../EffectBase"; export declare enum BuiltInAdvancedBloomEffectPropertiesEnum { BLOOM_SCALE = "bloomScale", BLUR = "blur", BRIGHTNESS = "brightness", PIXEL_SIZE = "pixelSize", QUALITY = "quality", THRESHOLD = "threshold" } export declare class BuiltInAdvancedBloomEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | number[] | null; }