import { type Container, type ICoordinates, type IDimension } from "@tsparticles/engine"; import type { IEmitterShape, IEmitterShapeGenerator } from "@tsparticles/plugin-emitters"; import type { IEmittersCanvasShapeOptions } from "./Options/Interfaces/IEmittersCanvasShapeOptions.js"; export declare class EmittersCanvasShapeGenerator implements IEmitterShapeGenerator { generate(container: Container, position: ICoordinates, size: IDimension, fill: boolean, options: IEmittersCanvasShapeOptions): IEmitterShape; }