export default class ObjectUtils { static equals(obj1: any, obj2: any, field: any): boolean; static deepEquals(a: any, b: any): boolean; static resolveFieldData(data: any, field: any): any; static isFunction(obj: any): boolean; static findDiffKeys(obj1: any, obj2: any): {}; static reorderArray(value: any, from: any, to: any): void; static findIndexInList(value: any, list: any): number; static getJSXElement(obj: any, ...params: any[]): any; static removeAccents(str: any): any; }