import type * as n3 from "n3"; import type stream from "stream"; import type { Models } from "@triply/utils"; import type App from "./App.ts"; import type Dataset from "./Dataset.ts"; export default class Graph { private _info; app: App; dataset: Dataset; readonly type = "Graph"; constructor(dataset: Dataset, info: Models.Graph); toFile(destinationPath: string, opts?: { compressed?: boolean; }): Promise; toStore(): Promise; toStream(type: "compressed" | "rdf-js"): Promise; get graphName(): string; getInfo(refresh?: boolean): Promise; get api(): { url: string; path: string; }; delete(): Promise; rename(newGraphName: string): Promise; } //# sourceMappingURL=Graph.d.ts.map