import type { Literal, Quad_Object } from "@rdfjs/types"; import type { ProxyContext } from "../ProxyContext"; import type { SubjectProxy } from "../subjectProxy/SubjectProxy"; export type ObjectJsonRepresentation = string | number | boolean | SubjectProxy; export declare function literalToJsonldRepresentation(literal: Literal): string | number | boolean; export declare function nodeToJsonldRepresentation(node: Quad_Object, proxyContext: ProxyContext): string | number | boolean | SubjectProxy;