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