/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React, { type ReactNode } from "react"; interface HumanInteractionHostProps { readonly children: ReactNode; } /** * Bridges {@link InkHumanConnector} into this Ink tree so human elicit/notify/display use the same UI stack as workflow progress. */ export declare function HumanInteractionHost({ children }: HumanInteractionHostProps): React.ReactElement; export {};