import { type ChatSummary, type MutationHint } from "../chat/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Creates a fresh direct conversation by inserting chats, chatMembers, and chatUpdates without a participant-pair key. * Every call commits a new chat identity so its lazy Rig binding, session, history, and retries remain independent. */ export declare function agentConversationCreate(executor: DrizzleExecutor, input: { actorUserId: string; agentUserId: string; }): Promise<{ chat: ChatSummary; hint: MutationHint; }>; //# sourceMappingURL=agentConversationCreate.d.ts.map