/** * Makes the decorated property linked to the sound that has the given name. * Once the script is instantiated, the reference to the sound is retrieved from the scene * and assigned to the property. Node link cant' be used in constructor. * This can be used only by scripts using Classes. * @param soundName defines the name of the sound to retrieve in scene. */ export declare function soundFromScene(soundName: string): (target: any, propertyKey: string | Symbol) => void;