import { GraphType, ObjectLike } from "./types"; /** * Returns the graph for which a defined triple is a member * @param subject A JsonldDatasetProxy that represents the subject * @param predicate The key on the JsonldDatasetProxy * @param object The direct object. This can be a JsonldDatasetProxy or the index * @returns a list of graphs for which the triples are members */ export declare function graphOf(subject: Subject, predicate: Key, object?: NonNullable extends Array ? number | ObjectLike : ObjectLike): GraphType[];