import { type Container, type Engine, type IPlugin, type RecursivePartial } from "@tsparticles/engine"; import type { ISoundsOptions, SoundsOptions } from "./types.js"; import { SoundsInstance } from "./SoundsInstance.js"; export declare class SoundsPlugin implements IPlugin { readonly id: string; private readonly _engine; constructor(engine: Engine); getPlugin(container: Container): Promise; loadOptions(options: SoundsOptions, source?: RecursivePartial): void; needsPlugin(options?: RecursivePartial): boolean; }