sig
  module Inner :
    sig
      type t = int
      val to_string : int -> string
      val is_valid : int -> bool
      val repl_tag : string
    end
  type t = Tools.MakePrivate(Inner).t
  type outer_t = Inner.t
  val to_string : t -> string
  val print : Batteries.Format.formatter -> t -> unit
  val o : outer_t -> t
  val eth : t
  val expe_eth : t
  val ax25 : t
  val tokring : t
  val chaos : t
  val ieee_802 : t
  val arcnet : t
  val random : unit -> t
end