declare class ObjectUtils {
  static isEmpty(object: object): boolean

  static isNotEmpty(object: object): boolean

  static deepClone(object: object): object

  static toJson(object: object): string

  static jsonParse(objJson: string): object

  static consoleJson(object: object): void
}

export = ObjectUtils;
