import { ColorAnimation } from "./ColorAnimation.js"; import type { IHslAnimation } from "../Interfaces/IHslAnimation.js"; import type { IOptionLoader } from "../Interfaces/IOptionLoader.js"; import type { RecursivePartial } from "../../Types/RecursivePartial.js"; export declare class HslAnimation implements IHslAnimation, IOptionLoader { readonly h: ColorAnimation; readonly l: ColorAnimation; readonly s: ColorAnimation; load(data?: RecursivePartial): void; }