import { type DrizzleTransaction } from "../drizzle.js"; /** * Replaces messageMentions with the normalized users and special audience tokens parsed from the message's current text. * Performing replacement in the content transaction keeps mention routing from referring to an earlier revision of the message. */ export declare function messageReplaceMentions(tx: DrizzleTransaction, messageId: string, messageText: string): Promise<{ userIds: string[]; notifyAll: boolean; }>; //# sourceMappingURL=messageReplaceMentions.d.ts.map