import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ISounds } from "../Interfaces/ISounds.js"; import { SoundsEvent } from "./SoundsEvent.js"; import { SoundsIcons } from "./SoundsIcons.js"; import { SoundsVolume } from "./SoundsVolume.js"; export declare class Sounds implements ISounds, IOptionLoader { autoPlay: boolean; enable: boolean; events: SoundsEvent[]; icons: SoundsIcons; volume: SoundsVolume; constructor(); load(data?: RecursivePartial): void; }