pub mod contract; pub mod heartbeat; pub mod unlock; pub mod secret_sharing; pub mod recovery; pub use contract::{InheritanceContract, Beneficiary, InheritanceConfig}; pub use heartbeat::{HeartbeatManager, HeartbeatStatus}; pub use unlock::{UnlockTier, UnlockSchedule, ProgressiveUnlock}; pub use secret_sharing::{ShamirShares, ShareDistribution}; pub use recovery::{RecoveryManager, DisputeResolution};