import type { IOptions } from "./Options/Interfaces/IOptions"; import type { Container } from "./Core/Container"; import type { IShapeDrawer } from "./Core/Interfaces/IShapeDrawer"; import type { ShapeDrawerAfterEffectFunction, ShapeDrawerDestroyFunction, ShapeDrawerDrawFunction, ShapeDrawerInitFunction, RecursivePartial, SingleOrMultiple } from "./Types"; import type { IPlugin } from "./Core/Interfaces/IPlugin"; import type { Particle } from "./Core/Particle"; import type { IMovePathGenerator } from "./Core/Interfaces/IMovePathGenerator"; export declare class MainSlim { #private; constructor(); init(): void; loadFromArray(tagId: string, options: RecursivePartial[], index?: number): Promise; load(tagId: string, options: SingleOrMultiple>): Promise; set(id: string, element: HTMLElement, options: RecursivePartial): Promise; loadJSON(tagId: string, pathConfigJson: SingleOrMultiple, index?: number): Promise; setOnClickHandler(callback: (e: Event, particles?: Particle[]) => void): void; dom(): Container[]; domItem(index: number): Container | undefined; addShape(shape: string, drawer: IShapeDrawer | ShapeDrawerDrawFunction, init?: ShapeDrawerInitFunction, afterEffect?: ShapeDrawerAfterEffectFunction, destroy?: ShapeDrawerDestroyFunction): void; addPreset(preset: string, options: RecursivePartial): void; addPlugin(plugin: IPlugin): void; addPathGenerator(name: string, generator: IMovePathGenerator): void; }