import { BaseType, ShapeType } from "@ng-org/shex-orm"; import { Scope } from "../types.ts"; /** * Utility for retrieving objects once without establishing a two-way subscription. * * @param shapeType The shape type of the objects to be retrieved. * @param scope The scope of the objects to be retrieved as Scope object or as graph NURI string. * @returns A set of all objects matching the shape and scope */ export declare function getObjects(shapeType: ShapeType, scope: Scope | string): Promise>; //# sourceMappingURL=getObjects.d.ts.map