import type { Vertex } from "../../../types/subgraph/vertices.js"; export type BaseIdToRevisions = Record; /** * Takes a collection of graph elements, and returns an object that groups them by their base IDs, mapping the IDs to * the collection of revisions. * * @param elements */ export declare const mapElementsIntoRevisions: (elements: GraphElementType[]) => BaseIdToRevisions;