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