/** * Custom Utilities for TTS SDK * * This module provides custom utilities for text-to-speech operations, * including automatic text chunking, audio merging, and phoneme processing. */ export * from "./constants.js"; export { chunkText, extractAudioFromNdjson } from "./text_utils.js"; export { applyPronunciationDictionary, PronunciationDictionaryValidationError, type PronunciationDictionaryEntry, } from "./pronunciation_utils.js"; export { mergeWavBinary, mergeMp3Binary, removeWavHeader, removeMp3Header, detectAudioFormat, extractAudioFromResponse, extractAudioFromResponses, } from "./audio_utils.js"; export { mergePhonemeData, adjustPhonemeTiming, createEmptyPhonemeDict, type PhonemeData, } from "./phoneme_utils.js"; //# sourceMappingURL=index.d.ts.map