sig
  type t =
      [ `format of Biocaml_table.Row.t_type
      | `separator of char
      | `strict_about of [ `cell_type | `row_length ] ] list
  val separators : Biocaml_table.Row.Tags.t -> char list
  val strict_row_length : Biocaml_table.Row.Tags.t -> bool
  val strict_cell_type : Biocaml_table.Row.Tags.t -> bool
  val format : Biocaml_table.Row.Tags.t -> Biocaml_table.Row.t_type option
  val default : Biocaml_table.Row.Tags.t
  val default_extension : Biocaml_table.Row.Tags.t -> string
  val to_string : Biocaml_table.Row.Tags.t -> string
  val of_string :
    string ->
    (Biocaml_table.Row.Tags.t,
     [> `table_row of [> `tags_of_string of exn ] ])
    Biocaml_internal_utils.Result.t
  val t_of_sexp : Sexplib.Sexp.t -> Biocaml_table.Row.Tags.t
  val sexp_of_t : Biocaml_table.Row.Tags.t -> Sexplib.Sexp.t
end