/** * A utility to handle and transform loosely structured JSON data into valid * JSON strings. * * @param input - The invalid JSON string to parse and transform. * @param context - An optional context object for handling IdentifierWithContext. * @returns A JSON-like string representation of the transformed data. */ export default function jsonLoose(input: string, context?: { [key: string]: unknown; }): string;