/** * Places a stable host node into the DOM at this component's mount point. * Uses `appendChild` in a `useLayoutEffect` so the host node is moved * (not cloned) when `TeleportTarget` remounts in a different position, * preserving the React subtree portaled into the host. * * `useTeleport().Target` uses this component internally. `TeleportTarget` * exists as the direct component form for call sites that manage their own * host node (e.g. `PageLayout`, which holds hosts in context). * * @internal */ export declare function TeleportTarget({ host }: { host: HTMLDivElement; }): import("react/jsx-runtime").JSX.Element;