import { type IOptionLoader, type RecursivePartial } from "@tsparticles/engine"; import type { IThemeDefault } from "../Interfaces/IThemeDefault.js"; import { ThemeMode } from "../../ThemeMode.js"; export declare class ThemeDefault implements IThemeDefault, IOptionLoader { auto: boolean; mode: ThemeMode | keyof typeof ThemeMode; value: boolean; constructor(); load(data?: RecursivePartial): void; }