sig
  module Dynamic :
    sig
      module type Common =
        sig
          type t
          val get : string -> Parameters.Dynamic.Common.t
          val set : string -> Parameters.Dynamic.Common.t -> unit
          val clear : string -> unit -> unit
          val is_set : string -> bool
          val is_default : string -> bool
        end
      module Bool :
        sig
          type t = bool
          val get : string -> t
          val set : string -> t -> unit
          val clear : string -> unit -> unit
          val is_set : string -> bool
          val is_default : string -> bool
          val on : string -> unit -> unit
          val off : string -> unit -> unit
        end
      module Int :
        sig
          type t = int
          val get : string -> t
          val set : string -> t -> unit
          val clear : string -> unit -> unit
          val is_set : string -> bool
          val is_default : string -> bool
          val incr : string -> unit -> unit
        end
      module String :
        sig
          type t = string
          val get : string -> t
          val set : string -> t -> unit
          val clear : string -> unit -> unit
          val is_set : string -> bool
          val is_default : string -> bool
        end
      module StringSet :
        sig
          type t = Datatype.String.Set.t
          val get : string -> t
          val set : string -> t -> unit
          val clear : string -> unit -> unit
          val is_set : string -> bool
          val is_default : string -> bool
          val add : string -> string -> unit
          val remove : string -> string -> unit
          val is_empty : string -> bool
          val iter : string -> (string -> unit) -> unit
        end
    end
  val check_range : string -> min:int -> max:int -> int -> unit
  val get_selection_context : unit -> State_selection.t
  module PrintVersion : Plugin.BOOL
  module PrintShare : Plugin.BOOL
  module PrintLib : Plugin.BOOL
  module PrintPluginPath : Plugin.BOOL
  module GeneralVerbose : Plugin.INT
  module GeneralDebug : Plugin.INT
  module Quiet : Plugin.BOOL
  module UseUnicode : Plugin.BOOL
  module Time : Plugin.STRING
  module PrintCode : Plugin.BOOL
  module PrintComments : Plugin.BOOL
  module CodeOutput :
    sig
      type t = string
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : State.t
      val name : string
      val kind : State.kind
      val mark_as_computed : ?project:Project.t -> unit -> unit
      val is_computed : ?project:Project.t -> unit -> bool
      module Datatype : Datatype.S
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val set_possible_values : string list -> unit
      val get_possible_values : unit -> string list
      val output : ('a, Format.formatter, unit) Pervasives.format -> 'a
    end
  module FloatNormal : Plugin.BOOL
  module FloatRelative : Plugin.BOOL
  module FloatHex : Plugin.BOOL
  module SaveState : Plugin.STRING
  module LoadState : Plugin.STRING
  module AddPath : Plugin.STRING_SET
  module LoadModule : Plugin.STRING_SET
  module LoadScript : Plugin.STRING_SET
  module Dynlink : Plugin.BOOL
  module Journal :
    sig module Enable : Plugin.BOOL module Name : Plugin.STRING end
  module UnrollingLevel : Plugin.INT
  module Machdep : Plugin.STRING
  module CppCommand : Plugin.STRING
  module CppExtraArgs : Plugin.STRING_SET
  module ReadAnnot : Plugin.BOOL
  module PreprocessAnnot : Plugin.BOOL
  module TypeCheck : Plugin.BOOL
  module ContinueOnAnnotError : Plugin.BOOL
  module SimplifyCfg : Plugin.BOOL
  module KeepSwitch : Plugin.BOOL
  module Constfold : Plugin.BOOL
  module Files :
    sig
      type t = string list
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : State.t
      val name : string
      val kind : State.kind
      val mark_as_computed : ?project:Project.t -> unit -> unit
      val is_computed : ?project:Project.t -> unit -> bool
      module Datatype : Datatype.S
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val add : string -> unit
      val remove : string -> unit
      val is_empty : unit -> bool
      val get_set : ?sep:string -> unit -> string
      val iter : (string -> unit) -> unit
      val exists : (string -> bool) -> bool
      module Check : Plugin.BOOL
      module Copy : Plugin.BOOL
      module Orig_name : Plugin.BOOL
    end
  module AllowDuplication : Plugin.BOOL
  module DoCollapseCallCast : Plugin.BOOL
  module ForceRLArgEval : Plugin.BOOL
  module MainFunction :
    sig
      type t = string
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : State.t
      val name : string
      val kind : State.kind
      val mark_as_computed : ?project:Project.t -> unit -> unit
      val is_computed : ?project:Project.t -> unit -> bool
      module Datatype : Datatype.S
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val set_possible_values : string list -> unit
      val get_possible_values : unit -> string list
      val unsafe_set : t -> unit
    end
  module LibEntry :
    sig
      type t = bool
      val set : t -> unit
      val add_set_hook : (t -> t -> unit) -> unit
      val get : unit -> t
      val clear : unit -> unit
      val is_default : unit -> bool
      val is_set : unit -> bool
      val self : State.t
      val name : string
      val kind : State.kind
      val mark_as_computed : ?project:Project.t -> unit -> unit
      val is_computed : ?project:Project.t -> unit -> bool
      module Datatype : Datatype.S
      val howto_marshal : (Datatype.t -> 'a) -> ('-> Datatype.t) -> unit
      val equal : t -> t -> bool
      val unsafe_set : t -> unit
      val add_alias : string list -> unit
      val on : unit -> unit
      val off : unit -> unit
      val unsafe_set : t -> unit
    end
  module UnspecifiedAccess : Plugin.BOOL
  module Overflow : Plugin.BOOL
  module SafeArrays : Plugin.BOOL
  module AbsoluteValidRange : Plugin.STRING
  module FloatFlushToZero : Plugin.BOOL
end