import { type IOptionLoader, type RangeValue, type RecursivePartial } from "@tsparticles/engine"; import type { IRotateAnimation } from "../Interfaces/IRotateAnimation.js"; export declare class RotateAnimation implements IRotateAnimation, IOptionLoader { decay: RangeValue; enable: boolean; speed: RangeValue; sync: boolean; constructor(); load(data?: RecursivePartial): void; }