"""C5 StateEstimator smoke test — AC-9 (public-API re-export).""" def test_interface_importable() -> None: # Assert from gps_denied_onboard.components.c5_state import ( EstimatorHealth, EstimatorOutput, IsamState, PoseSourceLabel, StateEstimator, ) assert StateEstimator is not None assert EstimatorOutput is not None assert EstimatorHealth is not None assert IsamState is not None assert PoseSourceLabel is not None