#[cfg(feature ="neural")]pubmodneural;pubmodunicode;/// Trait for sentence boundary detection.
////// `Send + Sync` so large documents can reflow independent regions in parallel
/// (cli feature / rayon) without cloning the splitter.
pubtraitSentenceSplitter: Send + Sync {/// Split a prose string into individual sentences.
fnsplit(&self, text:&str)->Vec<String>;}