import { type DrizzleTransaction } from "../drizzle.js"; /** * Inserts the chatUpdates row and global or targeted syncEvents for one channel point change. * Requiring the caller's transaction keeps delivery hints in the same commit as the channel counter that produced their pts value. */ export declare function channelUpdateInsert(executor: DrizzleTransaction, input: { sequence: number; pts: number; chatId: string; kind: string; entityId?: string; actorUserId?: string; targetUserId?: string; }): Promise; //# sourceMappingURL=channelUpdateInsert.d.ts.map