import { default as Graph } from 'graphology'; import { InternalGraphEdge, InternalGraphNode } from '../types'; import { LayoutStrategy } from './types'; /** * Promise based tick helper. */ export declare function tick(layout: LayoutStrategy): Promise; /** * Helper function to turn the graph nodes/edges into an array for * easier manipulation. */ export declare function buildNodeEdges(graph: Graph): { nodes: InternalGraphNode[]; edges: InternalGraphEdge[]; };