import { ColorAnimation } from "./ColorAnimation.js";
import type { IHslAnimation } from "../Interfaces/IHslAnimation.js";
import { OptionLoader } from "../../Utils/OptionLoader.js";
import type { RecursivePartial } from "../../Types/RecursivePartial.js";
export declare class HslAnimation extends OptionLoader<IHslAnimation> implements IHslAnimation {
    readonly h: ColorAnimation;
    readonly l: ColorAnimation;
    readonly s: ColorAnimation;
    protected doLoad(data: RecursivePartial<IHslAnimation>): void;
}
