import type { IShapeDrawer } from "../Core/Interfaces/IShapeDrawer"; import type { IParticle } from "../Core/Interfaces/IParticle"; export declare class CircleDrawer implements IShapeDrawer { draw(context: CanvasRenderingContext2D, particle: IParticle, radius: number): void; }