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