import { EffectBase } from "../EffectBase"; export declare enum BuiltInReflectionEffectPropertiesEnum { alpha = "alpha", amplitude = "amplitude", boundary = "boundary", mirror = "mirror", waveLength = "waveLength", timeScale = "timeScale" } export declare class BuiltInReflectionEffect extends EffectBase { timeScale: number; constructor(properties: Map); setProperty(propertyName: string, value: any): void; getProperty(propertyName: string): number | boolean | (number[] | Float32Array) | null; update(currentTime: number): void; }