import { AnimatableColor } from "../AnimatableColor.js";
import type { IFill } from "../../Interfaces/Particles/IFill.js";
import type { IOptionLoader } from "../../Interfaces/IOptionLoader.js";
import type { RangeValue } from "../../../Types/RangeValue.js";
import type { RecursivePartial } from "../../../Types/RecursivePartial.js";
export declare class Fill implements IFill, IOptionLoader<IFill> {
    color?: AnimatableColor;
    enable: boolean;
    opacity: RangeValue;
    constructor();
    load(data?: RecursivePartial<IFill>): void;
}
