sig
  type t =
      [ `Fifteen_min
      | `Fifteen_sec
      | `Five_min
      | `Five_sec
      | `One_day
      | `One_hour
      | `One_min
      | `One_sec
      | `Thirty_min
      | `Thirty_sec
      | `Three_min
      | `Two_min ]
  val of_string : string -> t
  val to_string : t -> string
  val tws_of_t : t -> Tws_prot.raw_tws
  val t_of_tws : Tws_prot.raw_tws -> t
  val val_type : t Tws_prot.Val_type.t
  val to_span : Bar_size.t -> Core.Std.Time.Span.t
  val t_of_sexp : Sexplib.Sexp.t -> Bar_size.t
  val __t_of_sexp__ : Sexplib.Sexp.t -> Bar_size.t
  val sexp_of_t : Bar_size.t -> Sexplib.Sexp.t
end