12constexpr inline std::int64_t kMinDurationSeconds = -315'576'000'000LL;
13constexpr inline std::int64_t kMaxDurationSeconds = 315'576'000'000LL;
14constexpr inline std::int32_t kMinDurationNanos = -999'999'999;
15constexpr inline std::int32_t kMaxDurationNanos = 999'999'999;
16constexpr inline std::int64_t kMinTimestampSeconds = -62'135'596'800LL;
17constexpr inline std::int64_t kMaxTimestampSeconds = 253'402'300'799LL;
18constexpr inline std::int32_t kMinTimestampNanos = 0;
19constexpr inline std::int32_t kMaxTimestampNanos = 999'999'999;
22[[nodiscard]]
bool IsValidDuration(std::int64_t seconds, std::int32_t nanos)
noexcept;
25[[nodiscard]]
bool IsValidTimestamp(std::int64_t seconds, std::int32_t nanos)
noexcept;