#[cfg(feature = "intelligence-completions")]
pub mod completion;
#[cfg(feature = "intelligence-highlights")]
pub mod highlight;
#[cfg(feature = "intelligence-hover")]
pub mod hover;
#[cfg(feature = "intelligence-completions")]
pub use completion::{get_markdown_completions, CompletionItem};
#[cfg(feature = "intelligence-highlights")]
pub use highlight::{compute_highlights, compute_highlights_with_source, Highlight, HighlightTag};
#[cfg(feature = "intelligence-hover")]
pub use hover::{get_hover_info, get_position_span, HoverInfo};