import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IFontTextMask } from "../Interfaces/IFontTextMask.js"; export declare class FontTextMask implements IFontTextMask, IOptionLoader { family: string; size: string | number; style: string; variant: string; weight: string; constructor(); load(data?: RecursivePartial): void; }