import { type Container, type IContainerPlugin, type IPlugin, type RecursivePartial } from "@tsparticles/engine"; import type { IThemesOptions, ThemesContainer, ThemesOptions } from "./types.js"; export declare class ThemesPlugin implements IPlugin { readonly id = "theme"; getPlugin(container: ThemesContainer): Promise; loadOptions(_container: Container, options: ThemesOptions, source?: RecursivePartial): void; needsPlugin(options?: RecursivePartial): boolean; }