import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ISoundsIcons } from "../Interfaces/ISoundsIcons.js"; import { SoundsIcon } from "./SoundsIcon.js"; export declare class SoundsIcons implements ISoundsIcons, IOptionLoader { enable: boolean; mute: SoundsIcon; unmute: SoundsIcon; volumeDown: SoundsIcon; volumeUp: SoundsIcon; constructor(); load(data?: RecursivePartial): void; }