/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { IHumanConnector, IHumanRequest, IHumanResponse } from "@workglow/util"; /** * {@link IHumanConnector} that renders via the active {@link HumanInteractionHost} inside workflow/task Ink UI. */ export declare class InkHumanConnector implements IHumanConnector { send(request: IHumanRequest, signal: AbortSignal): Promise; followUp(request: IHumanRequest, _previousResponse: IHumanResponse, signal: AbortSignal): Promise; }