import { type DrizzleExecutor } from "../drizzle.js"; /** * Reassigns an agentRigBindings row only after the requested agent, rig, and chat relationship has been validated. * Keeping validation and the binding write together prevents workers from attaching a run to a stale or unrelated conversation. */ export declare function agentChatBind(executor: DrizzleExecutor, input: { actorUserId: string; agentUserId: string; chatId: string; containerName: string; cwd: string; effort: string; imageId: string; sessionId: string; }): Promise<{ containerName: string; cwd: string; sessionId: string; }>; //# sourceMappingURL=agentChatBind.d.ts.map