While working on FFI (#163) I discovered that a bunch of types, like CalendarDateLike and TzProvider and TimeDuration are all private but exposed in various APIs.
This makes it tricky to build FFI wrappers around them, and probably isn't great API design. These should probably be public, with TzProvider potentially being sealed to prevent external implementations (if that's the goal).