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
    | Dump_output of string
    | Bisect_output of string
  val outputs : ReportArgs.output_kind list Stdlib.ref
  val verbose : bool Stdlib.ref
  val tab_size : int Stdlib.ref
  val title : string Stdlib.ref
  val separator : string Stdlib.ref
  val no_navbar : bool Stdlib.ref
  val no_folding : bool Stdlib.ref
  val search_path : string list Stdlib.ref
  val files : string list Stdlib.ref
  val combine_expr : string option Stdlib.ref
  val summary_only : bool Stdlib.ref
  val parse : unit -> unit
end