import { Fill, type IOptionLoader, type RecursivePartial, Stroke } from "@tsparticles/engine";
import type { IEmitterSpawn } from "../Interfaces/IEmitterSpawn.js";
export declare class EmitterSpawn implements IEmitterSpawn, IOptionLoader<IEmitterSpawn> {
    fill?: Fill;
    stroke?: Stroke;
    load(data?: RecursivePartial<IEmitterSpawn>): void;
}
