import * as Effect from "effect/Effect"; import type * as Fiber from "effect/Fiber"; import * as Runtime from "effect/Runtime"; import type * as Scope from "effect/Scope"; import type * as TQS from "typed-query-selector/parser"; export type ParseSelector = [T] extends [typeof ROOT_CSS_SELECTOR] ? Fallback : Fallback extends globalThis.Element ? TQS.ParseSelector : Fallback; export type DefaultEventMap = T extends Window ? WindowEventMap : T extends Document ? DocumentEventMap : T extends HTMLVideoElement ? HTMLVideoElementEventMap : T extends HTMLMediaElement ? HTMLMediaElementEventMap : T extends HTMLElement ? HTMLElementEventMap : T extends SVGElement ? SVGElementEventMap : T extends Element ? ElementEventMap : Readonly>; export declare const ROOT_CSS_SELECTOR: ":root"; export type ROOT_CSS_SELECTOR = typeof ROOT_CSS_SELECTOR; export declare function createScopedRuntime(): Effect.Effect<{ readonly runtime: Runtime.Runtime; readonly scope: Scope.Scope; readonly run: (effect: Effect.Effect) => Fiber.Fiber; }, never, R | Scope.Scope>; //# sourceMappingURL=_helpers.d.ts.map