import type { WorkflowNode, WorkflowNodeOutput } from "./model.js"; /** The operator answered. Their files come through as refs — never bytes, so * nothing binary ever enters the run. */ export declare function commentReplyOutput(todoId: string, comment: { id: string; body: string; attachments: ReadonlyArray<{ id: string; mime: string; }>; }): WorkflowNodeOutput; /** A Wait that reaches its own `resumeAt`. Only `todo-comment` distinguishes * the two ways it can end, and it says so on the way out. */ export declare function waitDueOutput(node: WorkflowNode | undefined): WorkflowNodeOutput; //# sourceMappingURL=wait-comment-output.d.ts.map