/** @jsxImportSource @opentui/react */ import type { ReactNode } from "react"; import type { AppServices } from "../../../ui-core/bootstrap/composition-root.js"; import type { Theme } from "../../../ui-core/rendering/theme.js"; export interface OverlayHostProps { readonly services: AppServices; readonly theme: Theme; readonly width: number; readonly height: number; readonly docked?: boolean | undefined; } declare function OverlayHostImpl(props: OverlayHostProps): ReactNode; export declare const OverlayHost: import("react").MemoExoticComponent; export {};