import type { IOptionLoader, RecursivePartial } from "tsparticles-engine"; import { DestroyBounds } from "./DestroyBounds"; import { DestroyMode } from "../../Enums/DestroyMode"; import type { IDestroy } from "../Interfaces/IDestroy"; import { Split } from "./Split"; export declare class Destroy implements IDestroy, IOptionLoader { bounds: DestroyBounds; mode: DestroyMode | keyof typeof DestroyMode; split: Split; constructor(); load(data?: RecursivePartial): void; }