import { type IOptionLoader, OptionsColor, type RangeValue, type RecursivePartial } from "@tsparticles/engine"; import type { ITwinkleParticlesValues } from "../Interfaces/ITwinkleParticlesValues.js"; export declare class TwinkleParticlesValues implements ITwinkleParticlesValues, IOptionLoader { enable: boolean; fillColor?: OptionsColor; frequency: number; opacity: RangeValue; strokeColor?: OptionsColor; constructor(); load(data?: RecursivePartial): void; }