/**
* Converts a JavaScript value to a formatted JSON string.
*
* @param value - The value to convert to a JSON string.
* @returns A formatted JSON stringor the string'undefined' if the value is undefined.
*/
export declarefunction stringify(value: unknown): string;