sig
  type ('a, -'perms) t
  val mem :
    ?equal:('-> '-> bool) -> ('a, [> Perms.Export.read ]) t -> '-> bool
  val length : ('a, [> Perms.Export.read ]) t -> int
  val is_empty : ('a, [> Perms.Export.read ]) t -> bool
  val iter : ('a, [> Perms.Export.read ]) t -> f:('-> unit) -> unit
  val fold :
    ('a, [> Perms.Export.read ]) t ->
    init:'accum -> f:('accum -> '-> 'accum) -> 'accum
  val exists : ('a, [> Perms.Export.read ]) t -> f:('-> bool) -> bool
  val for_all : ('a, [> Perms.Export.read ]) t -> f:('-> bool) -> bool
  val count : ('a, [> Perms.Export.read ]) t -> f:('-> bool) -> int
  val sum :
    (module Commutative_group.S with type t = 'sum) ->
    ('a, [> Perms.Export.read ]) t -> f:('-> 'sum) -> 'sum
  val find : ('a, [> Perms.Export.read ]) t -> f:('-> bool) -> 'a option
  val find_map :
    ('a, [> Perms.Export.read ]) t -> f:('-> 'b option) -> 'b option
  val to_list : ('a, [> Perms.Export.read ]) t -> 'a list
  val to_array : ('a, [> Perms.Export.read ]) t -> 'a array
  val min_elt :
    ('a, [> Perms.Export.read ]) t -> cmp:('-> '-> int) -> 'a option
  val max_elt :
    ('a, [> Perms.Export.read ]) t -> cmp:('-> '-> int) -> 'a option
  val create : '-> ('a, [< 'Common.perms ]) Ref.Permissioned.t
  val read_only :
    ('a, [> Common.read ]) Ref.Permissioned.t ->
    ('a, Common.read) Ref.Permissioned.t
  val ( ! ) : ('a, [> Common.read ]) Ref.Permissioned.t -> 'a
  val get : ('a, [> Common.read ]) Ref.Permissioned.t -> 'a
  val set : ('a, [> Common.write ]) Ref.Permissioned.t -> '-> unit
  val ( := ) : ('a, [> Common.write ]) Ref.Permissioned.t -> '-> unit
  val of_ref :
    'Pervasives.ref -> ('a, [< Common.read_write ]) Ref.Permissioned.t
  val to_ref :
    ('a, [> Common.read_write ]) Ref.Permissioned.t -> 'Pervasives.ref
  val swap :
    ('a, [> Common.read_write ]) Ref.Permissioned.t ->
    ('a, [> Common.read_write ]) Ref.Permissioned.t -> unit
  val replace :
    ('a, [> Common.read_write ]) Ref.Permissioned.t -> ('-> 'a) -> unit
  val bin_t :
    'Bin_prot.Type_class.t ->
    'perms Bin_prot.Type_class.t ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.t
  val bin_read_t :
    'Bin_prot.Read.reader ->
    'perms Bin_prot.Read.reader ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Read.reader
  val __bin_read_t__ :
    'Bin_prot.Read.reader ->
    'perms Bin_prot.Read.reader ->
    (int -> ('a, 'perms) Ref.Permissioned.t) Bin_prot.Read.reader
  val bin_reader_t :
    'Bin_prot.Type_class.reader ->
    'perms Bin_prot.Type_class.reader ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.reader
  val bin_size_t :
    'Bin_prot.Size.sizer ->
    'perms Bin_prot.Size.sizer ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Size.sizer
  val bin_write_t :
    'Bin_prot.Write.writer ->
    'perms Bin_prot.Write.writer ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Write.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer ->
    'perms Bin_prot.Type_class.writer ->
    ('a, 'perms) Ref.Permissioned.t Bin_prot.Type_class.writer
  val t_of_sexp :
    (Sexplib.Sexp.t -> 'a) ->
    (Sexplib.Sexp.t -> 'perms) ->
    Sexplib.Sexp.t -> ('a, 'perms) Ref.Permissioned.t
  val sexp_of_t :
    ('-> Sexplib.Sexp.t) ->
    ('perms -> Sexplib.Sexp.t) ->
    ('a, 'perms) Ref.Permissioned.t -> Sexplib.Sexp.t
end