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