import { type ICoordinates } from "@tsparticles/engine"; import type { LightContainer, LightParticle } from "./Types.js"; export declare const lightMode = "light"; export declare function drawLight(container: LightContainer, context: OffscreenCanvasRenderingContext2D, mousePos: ICoordinates): void; export declare function drawParticleShadow(container: LightContainer, context: OffscreenCanvasRenderingContext2D, particle: LightParticle, mousePos: ICoordinates): void;