import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { FontTextMask } from "./FontTextMask.js"; import type { ITextMask } from "../Interfaces/ITextMask.js"; import { TextMaskLine } from "./TextMaskLine.js"; export declare class TextMask implements ITextMask, IOptionLoader { color: string; fill: boolean; font: FontTextMask; lines: TextMaskLine; text: string; constructor(); load(data?: RecursivePartial): void; }