import { ExternalInteractorBase, type IInteractivityData, type IModes, type Modes } from "@tsparticles/plugin-interactivity"; import type { ILightMode, LightContainer, LightMode, LightParticle } from "./Types.js"; import { type PluginManager, type RecursivePartial } from "@tsparticles/engine"; export declare class ExternalLighter extends ExternalInteractorBase { #private; readonly maxDistance = 0; constructor(pluginManager: PluginManager, container: LightContainer); clear(): void; init(): void; interact(interactivityData: IInteractivityData): void; isEnabled(interactivityData: IInteractivityData, particle?: LightParticle): boolean; loadModeOptions(options: Modes & LightMode, ...sources: RecursivePartial<(IModes & ILightMode) | undefined>[]): void; reset(): void; }