import type { ICoordinates, Particle } from "tsparticles-engine"; import type { ISide } from "./ISide"; import { PolygonDrawerBase } from "./PolygonDrawerBase"; export declare class TriangleDrawer extends PolygonDrawerBase { getCenter(particle: Particle, radius: number): ICoordinates; getSidesCount(): number; getSidesData(particle: Particle, radius: number): ISide; }