sig
  class type t = object  end
  class type configs =
    object
      method alias : Js.js_string Js.t Js.js_array Js.t Js.prop
      method alternateClassName : 'Js.t Js.prop
      method config : 'Js.t Js.prop
      method extend : Js.js_string Js.t Js.prop
      method inheritableStatics : 'Js.t Js.prop
      method mixins : 'Js.t Js.prop
      method requires : Js.js_string Js.t Js.js_array Js.t Js.prop
      method singleton : bool Js.t Js.prop
      method statics : 'Js.t Js.prop
      method uses : Js.js_string Js.t Js.js_array Js.t Js.prop
    end
  class type events = object  end
  class type statics = object  end
  val of_configs : Ext_Class.configs Js.t -> Ext_Class.t Js.t
  val to_configs : Ext_Class.t Js.t -> Ext_Class.configs Js.t
end