import { EffectBase } from "../EffectBase"; export declare enum BuiltInNoiseEffectPropertiesEnum { intensity = "intensity", animated = "animated" } export declare class BuiltInNoiseEffect extends EffectBase { animated: boolean; constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | boolean | null; update(currentTime: number): void; }