import type { ReactiveController, ReactiveControllerHost, RenderOptions } from 'lit'; interface LightDomOptions { render: () => unknown; renderOptions?: RenderOptions; container?: HTMLElement; } export declare class LightDomController implements ReactiveController { private host; private options; constructor(host: ReactiveControllerHost & HTMLElement, options: LightDomOptions); private get container(); hostUpdated(): void; private render; } export {};