import { JsonLdDocument, NodeObject } from "jsonld"; /** * Converts any JSON-LD object into object literals linked in a graph * @param jsonLd The JSON-LD document * @param node The id of the node that should be returned as the root value */ export declare function json2ObjectGraph(jsonLd: JsonLdDocument, node: string): Promise;