import { JSONObject, JSONArray } from "parse-json-object";
export declare function extractJSONObject(text: string): JSONObject | undefined;
export declare function extractJSONArray(text: string): JSONArray | undefined;
export declare function extractJSON(text: string): JSONObject | JSONArray | undefined;
export type { JSONArray, JSONObject };
