import { type IOptionLoader, type ISourceOptions, type RecursivePartial } from "@tsparticles/engine"; import type { IResponsive } from "../Interfaces/IResponsive.js"; import { ResponsiveMode } from "../../ResponsiveMode.js"; export declare class Responsive implements IResponsive, IOptionLoader { maxWidth: number; mode: ResponsiveMode | keyof typeof ResponsiveMode; options: ISourceOptions; constructor(); load(data?: RecursivePartial): void; }