/** * Reads one JSON value out of a model's final message. * * A fenced block wins when present; otherwise the whole message must be the JSON value. Scraping * the first brace through the last one is deliberately not supported, because it lets surrounding * prose smuggle a value the model never actually committed to. */ export declare function parseJsonFromModelOutput(text: string): unknown;