export interface TimeZone { /** * The unique id of the timezone * * @example "America/Denver" */ id: string; /** * The human-readable name of the timezone. Combines id and offset. * * @example "America/Denver (-06:00 MDT)" */ name: string; /** * @example "-06:00 MDT" */ offset: string; }