/**
 * Parses a given value into a JSON.
 * Does not throw an exception on an invalid JSON string.
 */
declare function jsonParse<ValueType extends Record<string, any>>(value: any): ValueType | undefined;

export { jsonParse };
