import type { WorkflowToolRunRef } from "#execution/tools/workflow/messages.js";
import type { JsonValue } from "#shared/json.js";
export declare function emitWorkflowToolRunReportStep(input: {
    readonly from: WorkflowToolRunRef;
    readonly parentWritable: WritableStream<Uint8Array>;
    readonly update: JsonValue;
}): Promise<void>;
