sig
  type token =
      IDENT of string
    | INTEGER of int
    | FLOAT of float
    | BOOL of bool
    | STRING of string
    | REGEXP of Str.regexp
    | LOG_LEVEL of Lwt_log.level
    | EQUALS
    | LBRACKET
    | RBRACKET
    | COMMA
  val input :
    (Lexing.lexbuf -> Release_config_parser.token) -> Lexing.lexbuf -> unit
end