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<IHslAnimation> {
    readonly h: ColorAnimation;
    readonly l: ColorAnimation;
    readonly s: ColorAnimation;
    load(data?: RecursivePartial<IHslAnimation>): void;
}
