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