//! Event system for document changes and editor notifications
//!
//! Provides `DocumentEvent` enum for representing editor changes and
//! `EventChannel` for distributing events to observers. Supports both
//! synchronous and asynchronous event handling with filtering.
pub use EventChannel;
pub use DocumentEvent;
pub use EventFilter;
pub use ;