import { escapeXml } from "../voice-mapping.js"; export function generateNotifyTwiml(message: string, voice: string): string { return ` ${escapeXml(message)} `; }