import { type IOptionLoader, type RecursivePartial } from "tsparticles-engine"; import type { ISoundsVolume } from "../Interfaces/ISoundsVolume"; export declare class SoundsVolume implements ISoundsVolume, IOptionLoader { max: number; min: number; step: number; value: number; constructor(); load(data?: RecursivePartial): void; }