sig
  class type t =
    object ('a)
      method batchChanges : 'b Js.t -> unit Js.meth
      method beforeReset : unit Js.meth
      method callParent : 'c Js.t -> 'd Js.t Js.meth
      method callSuper : 'e Js.t -> 'f Js.t Js.meth
      method checkChange : unit Js.meth
      method checkDirty : unit Js.meth
      method clearInvalid : unit Js.meth
      method extractFileInput : Dom_html.element Js.t Js.meth
      method getErrors :
        'g Js.t -> Js.js_string Js.t Js.js_array Js.t Js.meth
      method getInitialConfig :
        Js.js_string Js.t Js.optdef -> 'h Js.t Js.meth
      method getModelData : 'i Js.t Js.meth
      method getName : Js.js_string Js.t Js.meth
      method getSubmitData : 'j Js.t Js.meth
      method getValue : 'k Js.t Js.meth
      method initConfig : 'l Js.t -> 'a Js.t Js.meth
      method initField : unit Js.meth
      method initValue : unit Js.meth
      method isDirty : bool Js.t Js.meth
      method isEqual : 'm Js.t -> 'n Js.t -> bool Js.t Js.meth
      method isFileUpload : bool Js.t Js.meth
      method isFormField : bool Js.t Js.prop
      method isValid : bool Js.t Js.meth
      method markInvalid : 'o Js.t -> unit Js.meth
      method originalValue : 'p Js.t Js.prop
      method reset : unit Js.meth
      method resetOriginalValue : unit Js.meth
      method self : Ext_Class.t Js.t Js.prop
      method setValue : 'q Js.t -> 'a Js.t Js.meth
      method statics : Ext_Class.t Js.t Js.meth
      method transformOriginalValue : 'r Js.t -> 's Js.t Js.meth
      method validate : bool Js.t Js.meth
    end
  class type configs =
    object
      method disabled : bool Js.t Js.prop
      method name : Js.js_string Js.t Js.prop
      method submitValue : bool Js.t Js.prop
      method validateOnChange : bool Js.t Js.prop
      method value : 'a Js.t Js.prop
    end
  class type events =
    object
      method change :
        (Ext_form_field_Field.t Js.t -> 'a Js.t -> 'b Js.t -> 'c Js.t -> unit)
        Js.callback Js.writeonly_prop
      method dirtychange :
        (Ext_form_field_Field.t Js.t -> bool Js.t -> 'd Js.t -> unit)
        Js.callback Js.writeonly_prop
      method validitychange :
        (Ext_form_field_Field.t Js.t -> bool Js.t -> 'e Js.t -> unit)
        Js.callback Js.writeonly_prop
    end
  class type statics =
    object
      method addMembers : 'a Js.t -> unit Js.meth
      method addStatics : 'b Js.t -> 'c Js.t Js.meth
      method create : 'd Js.t Js.meth
      method createAlias : 'e Js.t -> 'f Js.t -> unit Js.meth
      method getName : Js.js_string Js.t Js.meth
    end
  val of_configs :
    Ext_form_field_Field.configs Js.t -> Ext_form_field_Field.t Js.t
  val to_configs :
    Ext_form_field_Field.t Js.t -> Ext_form_field_Field.configs Js.t
end