/**
* Converts a JavaScript Object Notation (JSON) stringinto an object.
*
* Note: This is wrapper around `JSON.parse()` with better errorand type handling
*
* @public exported from `@promptbook/utils`
*/
export declarefunction jsonParse<T>(value: string): T;