export declare class JsonUtils { /** * 是否为json字符串 * @param str */ static isJsonString(str: string): boolean; /** * 转json字符串 * @param obj */ static toJsonStr(obj: any): any; /** * 转json对象 * @param jsonStr */ static toJson(jsonStr: string): any; static toClassModel(json: any, { notes }?: { notes?: boolean | undefined; }): string[]; } //# sourceMappingURL=json-utils.d.ts.map