sig
  type output_kind =
      Html_output of string
    | Xml_output of string
    | Xml_emma_output of string
    | Csv_output of string
    | Text_output of string
  val outputs : ReportArgs.output_kind list Pervasives.ref
  val verbose : bool Pervasives.ref
  val tab_size : int Pervasives.ref
  val title : string Pervasives.ref
  val separator : string Pervasives.ref
  val no_navbar : bool Pervasives.ref
  val no_folding : bool Pervasives.ref
  val search_path : string list Pervasives.ref
  val files : string list Pervasives.ref
  val parse : unit -> unit
end