import { type Engine, type IContainerPlugin } from "@tsparticles/engine"; import type { SoundsContainer } from "./types.js"; export declare class SoundsPluginInstance implements IContainerPlugin { #private; constructor(container: SoundsContainer, engine: Engine); init(): Promise; mute(): Promise; start(): Promise; stop(): void; toggleMute(): Promise; unmute(): Promise; volumeDown(): Promise; volumeUp(): Promise; }