import { ReactiveController, ReactiveElement } from 'lit'; export declare function dynamicControllers(): ClassDecorator; /** * Responsible for dynamically initializing controllers that are added to the static _controllers property of a given element */ export declare class DynamicControllers implements ReactiveController { #private; private host; constructor(host: T); hostConnected(): Promise; sync(): void; static add(hostClass: any, Controller: any): void; }