export interface AgActionResult { result?: unknown; error?: string; success: boolean; } export interface IAgActionCallerParams { sessionId: string; toolCallId: string; toolName: string; args: Record; timeout?: number; } export declare function callAgAction({ sessionId, toolCallId, toolName, args, timeout, }: IAgActionCallerParams): Promise; //# sourceMappingURL=action-caller.d.ts.map