import { type IOptionLoader, OptionsColor, type RangeValue, type RecursivePartial } from "tsparticles-engine"; import type { IRoll } from "../Interfaces/IRoll"; import { RollLight } from "./RollLight"; import { RollMode } from "../../RollMode"; export declare class Roll implements IRoll, IOptionLoader { backColor?: OptionsColor; darken: RollLight; enable: boolean; enlighten: RollLight; mode: RollMode | keyof typeof RollMode; speed: RangeValue; constructor(); load(data?: RecursivePartial): void; }