export interface IFrontendToolCallerParams { sessionId: string; toolId: string; toolName: string; args: Record; toolType: 'browser' | 'agui'; timeout?: number; } export declare function callFrontendTool({ sessionId, toolId, toolName, args, toolType, timeout, }: IFrontendToolCallerParams): Promise; //# sourceMappingURL=frontend-tool-caller.d.ts.map