import { EffectBase } from "../EffectBase"; export declare enum BuiltInBloomEffectPropertiesEnum { STRENGTH = "strength", QUALITY = "quality", RESOLUTION = "resolution", KERNEL_SIZE = "kernelSize" } export declare class BuiltInBloomEffect extends EffectBase { constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | null; }