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