sig
  class type t =
    object ('a)
      method callParent : 'Js.t -> 'Js.t Js.meth
      method callSuper : 'Js.t -> '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 self : Ext_Class.t Js.t Js.prop
      method statics : Ext_Class.t Js.t Js.meth
      method syncRowHeights : unit Js.meth
    end
  class type configs =
    object
      method lockedGridConfig : 'Js.t Js.prop
      method lockedViewConfig : 'Js.t Js.prop
      method normalGridConfig : 'Js.t Js.prop
      method normalViewConfig : 'Js.t Js.prop
      method scrollDelta : Js.number Js.t Js.prop
      method subGridXType : Js.js_string Js.t Js.prop
      method syncRowHeight : bool Js.t Js.prop
    end
  class type events =
    object
      method filterchange :
        (Ext_data_Store.t Js.t ->
         Ext_util_Filter.t Js.js_array Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
      method lockcolumn :
        ('Js.t -> Ext_grid_column_Column.t Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
      method processcolumns :
        (Ext_grid_column_Column.t Js.js_array Js.t ->
         Ext_grid_column_Column.t Js.js_array Js.t -> 'Js.t -> unit)
        Js.callback Js.writeonly_prop
      method unlockcolumn :
        ('Js.t -> Ext_grid_column_Column.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_grid_locking_Lockable.configs Js.t ->
    Ext_grid_locking_Lockable.t Js.t
  val to_configs :
    Ext_grid_locking_Lockable.t Js.t ->
    Ext_grid_locking_Lockable.configs Js.t
end