//! Exponential smoothing models.
//!
//! This module provides exponential smoothing forecasting methods:
//! - Simple Exponential Smoothing (SES)
//! - Holt's Linear Trend
//! - Holt-Winters (additive and multiplicative seasonality)
//! - ETS (Error-Trend-Seasonal) state-space framework
//! - AutoETS (automatic model selection)
//! - SeasonalES (multiplicative seasonal exponential smoothing)
pub use ;
pub use ;
pub use ;
pub use HoltLinearTrend;
pub use ;
pub use ;
pub use SimpleExponentialSmoothing;