import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import { EmitterShapeReplace } from "./EmitterShapeReplace.js"; import type { IEmitterShape } from "../Interfaces/IEmitterShape.js"; export declare class EmitterShape implements IEmitterShape, IOptionLoader { options: Record; readonly replace: EmitterShapeReplace; type: string; load(data?: RecursivePartial): void; }