sig
  class type t =
    object ('a)
      method addDocked :
        'Js.t ->
        Js.number Js.t Js.optdef -> Ext_Component.t Js.js_array Js.t Js.meth
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> 'Js.t Js.meth
      method getDockedComponent : 'Js.t -> #Ext_Component.t Js.t Js.meth
      method getDockedItems :
        Js.js_string Js.t ->
        bool Js.t -> Ext_Component.t Js.js_array Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'Js.t Js.meth
      method initConfig : 'Js.t -> 'Js.t Js.meth
      method insertDocked : Js.number Js.t -> 'Js.t -> unit Js.meth
      method onDockedAdd : #Ext_Component.t Js.t -> unit Js.meth
      method onDockedRemove : #Ext_Component.t Js.t -> unit Js.meth
      method removeDocked :
        #Ext_Component.t Js.t -> bool Js.t Js.optdef -> unit Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method statics : Ext_Class.t Js.t Js.meth
    end
  class type configs =
    object ('a)
      method defaultDockWeights : 'Js.t Js.prop
      method onDockedAdd :
        ('Js.t, #Ext_Component.t Js.t -> unit) Js.meth_callback
        Js.writeonly_prop
      method onDockedRemove :
        ('Js.t, #Ext_Component.t Js.t -> unit) Js.meth_callback
        Js.writeonly_prop
    end
  class type events =
    object
      method dockedadd :
        ('Js.t ->
         #Ext_Component.t Js.t -> Js.number Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
      method dockedremove :
        ('Js.t -> #Ext_Component.t Js.t -> 'Js.t -> unit) Js.callback
        Js.writeonly_prop
    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_container_DockingContainer.configs Js.t ->
    Ext_container_DockingContainer.t Js.t
  val to_configs :
    Ext_container_DockingContainer.t Js.t ->
    Ext_container_DockingContainer.configs Js.t
end