import type { IConfettiOptions } from "./IConfettiOptions.js";
import type { RecursivePartial } from "@tsparticles/engine";
export interface ConfettiParams {
    canvas?: HTMLCanvasElement;
    id: string;
    options: RecursivePartial<IConfettiOptions>;
}
