/** * Try to parse a string as JSON. If the string is not valid JSON, return undefined. * * @param input the string to parse * @returns the parsed JSON or undefined if the input is not valid JSON */ export declare function tryParseJson(input: string): any | undefined; //# sourceMappingURL=json.d.ts.map