import { useTimeZoneContext } from'../contexts/TimeZoneContext/TimeZoneContext';
/** Return time zone that should be used instead {@link Intl.DateTimeFormat().resolvedOptions().timeZone} */exportfunctionuseTimeZone(): string {
returnuseTimeZoneContext().timeZone;
}