import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { ILightArea } from "../Interfaces/ILightArea.js"; import { LightGradient } from "./LightGradient.js"; export declare class LightArea implements ILightArea, IOptionLoader { gradient: LightGradient; radius: number; constructor(); load(data?: RecursivePartial): void; }