/** * Contextual represenation of the root element of your application * @since 8.19.0 */ import * as Context from "@typed/context"; import type * as Effect from "effect/Effect"; import type * as Scope from "effect/Scope"; import type { AddEventListenerOptions } from "./EventTarget.js"; /** * The root element of your application * @since 8.19.0 * @category models */ export interface RootElement { readonly rootElement: ParentNode & HTMLElement; } /** * The root element of your application * @since 8.19.0 * @category context */ export declare const RootElement: Context.Tagged; /** * Add an event listener to the root of your application. * @since 8.19.0 * @category models */ export declare const addRootElementListener: (options: AddEventListenerOptions) => Effect.Effect; //# sourceMappingURL=RootElement.d.ts.map