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