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