import type { WorkflowNode, WorkflowState } from '@cogitator-ai/types'; import type { Agent, RunOptions, RunResult } from '@cogitator-ai/core'; export interface AgentNodeOptions { stateMapper?: (result: RunResult) => Partial; inputMapper?: (state: S, input?: unknown) => string; runOptions?: Partial; } export declare function agentNode(agent: Agent, options?: AgentNodeOptions): WorkflowNode; //# sourceMappingURL=agent.d.ts.map