import { type IAnimatable, type IAnimation, type IOptionLoader, type RangeValue, type RecursivePartial, RotateDirection, type RotateDirectionAlt } from "@tsparticles/engine"; import { GradientAngleAnimation } from "./GradientAngleAnimation.js"; import type { IGradientAngle } from "../Interfaces/Gradients.js"; export declare class GradientAngle implements IGradientAngle, IAnimatable, IOptionLoader> { animation: GradientAngleAnimation; direction: RotateDirection | keyof typeof RotateDirection | RotateDirectionAlt; value: RangeValue; constructor(); load(data?: RecursivePartial>): void; }