export declare class ObjectUtils { static resolve(obj: object, key: string): unknown; static isObject(item: object): boolean; static mergeDeep(target: object, source: object, ignoreUndefined?: boolean): unknown; static removeUndefined(obj: object): unknown; static removeNull(obj: T): T; }