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