import type { DrizzleExecutor } from "../drizzle.js"; import type { MutationHint } from "../chat/types.js"; /** * Stores the terminal MCP result and status for one previously begun app call so the original tool-result notification can be replayed whenever its chat message is reopened. * This action updates pluginMcpAppCalls and advances an already-linked assistant messages row in one transaction after external execution settles. */ export declare function pluginMcpAppComplete(executor: DrizzleExecutor, input: { sessionId: string; callId: string; status: "completed" | "failed"; result: Readonly>; }): Promise; //# sourceMappingURL=pluginMcpAppComplete.d.ts.map