import { Graph } from 'graphlib';
import { ExecutionOptions } from './options';
import { Component } from '../../component';
export declare function createSubGraph(components: Component[], options: ExecutionOptions, graph: Graph): Graph;
export declare function getNeighborsByDirection(id: string, g: Graph, direction?: 'predecessors' | 'successors'): string[];
