import { ToolStore } from '../../../types'; import { ChatState } from '../../state'; import { IGraphNode, RunnableConfig } from '../../types'; import { ChatStore } from '../chat.store'; export declare class RunToolNode implements IGraphNode { private readonly tools; private readonly chatStore; constructor(tools: ToolStore, chatStore: ChatStore); execute(state: ChatState, config: RunnableConfig): Promise; }