import type { ToolExecutionContext } from "@/types"; import type { AppDescriptor } from "./appTypes.js"; type AppExecuteInput = { app: AppDescriptor; prompt: string; context: ToolExecutionContext; waitForResponse?: boolean; }; export type AppExecuteResult = { agentId: string; responseText: string | null; }; /** * Executes an app in a dedicated app agent. * Expects: app descriptor is discovered/validated; prompt is non-empty. */ export declare function appExecute(input: AppExecuteInput): Promise; export {}; //# sourceMappingURL=appExecute.d.ts.map