import { type ChatMutation } from "./impl/chatMutation.js"; import { type DrizzleTransaction } from "../drizzle.js"; /** * Advances a chats point and delegates insertion of the ordered channel and global updates at a caller-supplied sequence. * Requiring the caller's transaction ties the entity mutation to the exact synchronization cursors that announce it. */ export declare function chatAdvanceWithSequence(tx: DrizzleTransaction, sequence: number, actorUserId: string | undefined, chatId: string, kind: string, entityId?: string, targetUserId?: string, incrementMessageSequence?: boolean): Promise; //# sourceMappingURL=chatAdvanceWithSequence.d.ts.map