import { Graph } from '../graph';
export declare function dfs(g: Graph, vs: string[], order: 'pre' | 'post'): string[];
