import { GradientType, type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { AnimatableGradientColor } from "./AnimatableGradientColor.js"; import { GradientAngle } from "./GradientAngle.js"; import type { IAnimatableGradient } from "../Interfaces/IAnimatableGradient.js"; export declare class AnimatableGradient implements IAnimatableGradient, IOptionLoader { angle: GradientAngle; colors: AnimatableGradientColor[]; type: GradientType; constructor(); load(data?: RecursivePartial): void; }