import { ResultData, NodeDataParams, NodeState } from "./type"; import type { GraphAI } from "./graphai"; import type { ComputedNode, StaticNode } from "./node"; export declare class TransactionLog { nodeId: string; state: NodeState; startTime?: number; endTime?: number; retryCount?: number; agentId?: string; params?: NodeDataParams; inputs?: string[]; inputsData?: Array; namedInputs?: Record; injectFrom?: string; errorMessage?: string; result?: ResultData; resultKeys?: string[]; mapIndex?: number; isLoop?: boolean; repeatCount?: number; log?: TransactionLog[]; constructor(nodeId: string, mapIndex?: number); initForComputedNode(node: ComputedNode, graph: GraphAI): void; onInjected(node: StaticNode, graph: GraphAI, injectFrom?: string): void; onComplete(node: ComputedNode, graph: GraphAI, localLog: TransactionLog[]): void; beforeExecute(node: ComputedNode, graph: GraphAI, transactionId: number, namedInputs: Record, agentId?: string): void; beforeAddTask(node: ComputedNode, graph: GraphAI): void; onError(node: ComputedNode, graph: GraphAI, errorMessage: string): void; onSkipped(node: ComputedNode, graph: GraphAI): void; }