/** * Pretty-print a string that may contain JSON. Falls back to the original string * if it doesn't parse as JSON, so non-JSON payloads render unchanged. */ export declare function prettyPrintJson(s: string | undefined): string | undefined;