import { type Container, type IShapeDrawData, type IShapeDrawer } from "@tsparticles/engine"; import type { RoundedParticle } from "./RoundedParticle.js"; export declare class RoundedPolygonDrawer implements IShapeDrawer { draw(data: IShapeDrawData): void; getSidesCount(particle: RoundedParticle): number; particleInit(container: Container, particle: RoundedParticle): void; }