sig
  class type t =
    object ('a)
      method add : 'Js.t -> 'Js.t Js.meth
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method clear : bool Js.t Js.optdef -> unit Js.meth
      method contains : 'Js.t -> bool Js.t Js.meth
      method each : 'Js.callback -> 'Js.t Js.optdef -> 'Js.t Js.meth
      method elements :
        Dom_html.element Js.t Js.js_array Js.t Js.readonly_prop
      method fill : 'Js.t -> 'Js.t Js.meth
      method filter : 'Js.t -> 'Js.t Js.meth
      method first : Ext_dom_Element.t Js.t Js.meth
      method getCount : Js.number Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method indexOf : 'Js.t -> Js.number Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method isComposite : bool Js.t Js.prop
      method item : Js.number Js.t -> Ext_dom_Element.t Js.t Js.meth
      method last : Ext_dom_Element.t Js.t Js.meth
      method removeElement :
        'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method replaceElement :
        'Js.t -> 'Js.t -> bool Js.t Js.optdef -> 'Js.t Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method slice :
        Js.number Js.t Js.optdef ->
        Js.number Js.t Js.optdef ->
        Dom_html.element Js.t Js.js_array Js.t Js.meth
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs = object  end
  class type events = object  end
  class type statics =
    object
      method addMembers : 'Js.t -> unit Js.meth
      method addStatics : 'Js.t -> 'Js.t Js.meth
      method create : 'Js.t Js.meth
      method createAlias : 'Js.t -> 'Js.t -> unit Js.meth
      method getName : Js.js_string Js.t Js.meth
    end
  val of_configs :
    Ext_dom_CompositeElement.configs Js.t -> Ext_dom_CompositeElement.t Js.t
  val to_configs :
    Ext_dom_CompositeElement.t Js.t -> Ext_dom_CompositeElement.configs Js.t
end