import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { BackgroundMaskCover } from "./BackgroundMaskCover.js"; import type { IBackgroundMask } from "../Interfaces/IBackgroundMask.js"; export declare class BackgroundMask implements IBackgroundMask, IOptionLoader { composite: GlobalCompositeOperation; readonly cover: BackgroundMaskCover; enable: boolean; constructor(); load(data?: RecursivePartial): void; }