/** * Creates a Channel Talk manager mention markup string. * * Both `managerId` and `name` are HTML-escaped to prevent markup injection. * * @param managerId - The manager's ID * @param name - Display name shown after the "@" symbol * @returns Formatted mention string for use in text blocks * * @example * ```typescript * mention("123", "Alice") * // => '@Alice' * * // Use inside MessageBuilder: * new MessageBuilder() * .text(`Hello ${mention("123", "Alice")}!`) * .build(); * ``` */ export declare function mention(managerId: string, name: string): string; //# sourceMappingURL=mention.d.ts.map