//! # Actor System
//!
//! The actor system is the core of the Theater runtime, providing the foundation
//! for executing WebAssembly components in an isolated, managed environment.
//!
//! This module contains all the components necessary for actor lifecycle management,
//! state handling, and operation execution. Together, these components form a robust
//! actor system with isolation, supervision, and fault tolerance capabilities.
// Public re-exports
pub use ActorHandle;
pub use ActorRuntime;
pub use ActorRuntimeError;
pub use StartActorResult;
pub use ActorStore;
pub use ActorError;
pub use ActorOperation;