//#region src/in-page-ui/dom.d.ts declare function h(tag: K, attrs?: Record | null, ...children: (string | Node | null | undefined)[]): HTMLElementTagNameMap[K]; declare function setHtml(el: HTMLElement, html: string): void; declare function hasAppendChild(value: unknown): value is { appendChild(node: Node): void; }; declare function canMountIntoDom(): boolean; type UiGlobalInstance = { cleanup: () => void; }; declare function getGlobalUiInstance(key: string): UiGlobalInstance | null; declare function setGlobalUiInstance(key: string, instance: UiGlobalInstance | null): void; //#endregion export { UiGlobalInstance, canMountIntoDom, getGlobalUiInstance, h, hasAppendChild, setGlobalUiInstance, setHtml }; //# sourceMappingURL=dom.d.ts.map