import { PARSE_TYPE } from "../@types/types"; export default class ObjectUtil { static parse(target: string, _type: PARSE_TYPE): any; static clone(target: any): any; static toJsonString(target: any): string; static getObject(target: any, key: string, defaultValue?: any): any; static createSafeObject(key: string): { root: any; rootKey: string; last: any; lastKey: string; }; static isNull(target: any): boolean; static isObject(variable: any): boolean; static isDict(v: any): boolean; } //# sourceMappingURL=ObjectUtil.d.ts.map