import { type IOptionLoader, type RangeValue, type RecursivePartial, type SingleOrMultiple } from "tsparticles-engine"; import type { IFireworkOptions } from "./IFireworkOptions"; export declare class FireworkOptions implements IFireworkOptions, IOptionLoader { brightness: RangeValue; colors: SingleOrMultiple; gravity: RangeValue; minHeight: RangeValue; rate: RangeValue; saturation: RangeValue; sounds: boolean; speed: RangeValue; splitCount: RangeValue; constructor(); load(data?: RecursivePartial): void; }