import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ITextOptions } from "../Interfaces/ITextOptions.js"; import { TextFontOptions } from "./TextFontOptions.js"; import { TextLinesOptions } from "./TextLinesOptions.js"; export declare class TextOptions implements ITextOptions, IOptionLoader { color: string; font: TextFontOptions; lines: TextLinesOptions; text: string; constructor(); load(data?: RecursivePartial): void; }