import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ITwinkle } from "../Interfaces/ITwinkle.js"; import { TwinkleLinksValues } from "./TwinkleLinksValues.js"; import { TwinkleParticlesValues } from "./TwinkleParticlesValues.js"; export declare class Twinkle implements ITwinkle, IOptionLoader { links: TwinkleLinksValues; particles: TwinkleParticlesValues; constructor(); load(data?: RecursivePartial): void; }