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