//! Decoding engine for interpreting raw bytes as typed values.
//!
//! This module contains all decoding functionality: the built-in decoders
//! (integer, float, string, timestamp), bit-level decoding, byte statistics,
//! and the Lua and WASM plugin decoder managers.
//!
//! # Submodules
//!
//! - [`types`]: Core types (`Endian`, `DecodedValue`, `RANGE_COLORS`) and helper functions.
//! - [`builtin`]: Built-in byte-level decoder for common data types.
//! - [`bits`]: Bit-level decoder for sub-byte field inspection.
//! - [`stats`]: Byte-level statistical analysis (entropy, sparsity, uniqueness).
//! - [`lua`]: Lua decoder plugin manager.
//! - [`wasm`]: WASM decoder plugin manager.
pub use decode_bits;
pub use decode_selection;
pub use LuaDecoderManager;
pub use byte_stats;
pub use ;
pub use WasmDecoderManager;