import { type Container, type IShapeDrawData, type IShapeDrawer } from "@tsparticles/engine"; import type { CogParticle } from "./CogParticle.js"; export declare class CogDrawer implements IShapeDrawer { readonly validTypes: readonly ["cog"]; afterDraw(data: IShapeDrawData): void; draw(data: IShapeDrawData): void; particleInit(container: Container, particle: CogParticle): void; }