import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ISoundsMelody } from "../Interfaces/ISoundsMelody.js"; import { SoundsNote } from "./SoundsNote.js"; export declare class SoundsMelody implements ISoundsMelody, IOptionLoader { loop: boolean; melodies: SoundsMelody[]; notes: SoundsNote[]; constructor(); load(data?: RecursivePartial): void; }