import type { Base } from '../index.js'; /** * AbstractManager class. */ export declare class AbstractManager { /** * Base instance. */ __base: Base; /** * Get the base instance root element. */ get __element(): HTMLElement & { __base__?: Map; }; /** * Get the base instance config. */ get __config(): import("../Base.js").BaseConfig; /** * Get the events manager. */ get __eventsManager(): import("./EventsManager.js").EventsManager; __props: T; get props(): T; /** * Class constructor. */ constructor(base: Base); }