import { Graph, Node, Edge } from '@teambit/graph.cleargraph'; import type { ComponentID } from '@teambit/component-id'; import type { ObjectList } from './object-list'; import type { BitObjectList } from './bit-object-list'; import { Dependency } from '@teambit/graph'; type BitIdNode = Node; type DependencyEdge = Edge; export declare class IdGraph extends Graph { constructor(nodes?: BitIdNode[], edges?: DependencyEdge[]); } export declare function objectListToGraph(objectList: ObjectList): Promise; export declare function bitObjectListToGraph(bitObjectsList: BitObjectList): Promise; export {};