import type { Container } from "../Core/Container.js"; import type { Engine } from "../Core/Engine.js"; import type { IOptionLoader } from "../Options/Interfaces/IOptionLoader.js"; import type { IParticlesOptions } from "../Options/Interfaces/Particles/IParticlesOptions.js"; import { ParticlesOptions } from "../Options/Classes/Particles/ParticlesOptions.js"; import type { RecursivePartial } from "../Types/RecursivePartial.js"; export declare function loadOptions(options: IOptionLoader, ...sourceOptionsArr: RecursivePartial[]): void; export declare function loadParticlesOptions(engine: Engine, container: Container, ...sourceOptionsArr: RecursivePartial[]): ParticlesOptions;