import { Quad } from "@rdfjs/types"; import { WrapperSubscribableDataset } from "o-dataset-pack"; import { LdoBuilder } from "./LdoBuilder"; import { ShapeType } from "./ShapeType"; import { LdoBase } from "./util"; /** * Utility for building a linked data object */ export declare class LdoDataset extends WrapperSubscribableDataset { /** * Gets a builder for a given type * @param shapeType A ShapeType * @returns A builder for the given type */ usingType(shapeType: ShapeType): LdoBuilder; }