import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IInfection } from "../Interfaces/IInfection.js"; import { InfectionStage } from "./InfectionStage.js"; export declare class Infection implements IInfection, IOptionLoader { cure: boolean; delay: number; enable: boolean; infections: number; stages: InfectionStage[]; constructor(); load(data?: RecursivePartial): void; }