import type { IAnimatableColor } from "../IAnimatableColor.js";
import type { IRangeColor } from "../../../Core/Interfaces/Colors.js";
import type { RangeValue } from "../../../Types/RangeValue.js";
import type { RecursivePartial } from "../../../Types/RecursivePartial.js";
export interface IFill {
    color?: RecursivePartial<IAnimatableColor> | RecursivePartial<IRangeColor>;
    enable: boolean;
    opacity?: RangeValue;
}
