import { QueryGraph } from "./querygraph"; import { RootPath } from "./graphPath"; export declare function toDot(graph: QueryGraph, config?: DotGraphConfig): string; export declare function groupToDot(name: string, graphs: Map, configs?: Map): string; export type DotGraphConfig = { highlightedPaths?: HighlitedPath[]; noTerminal?: boolean; }; export declare function pickHighlights(paths: RootPath[], excluded?: string[]): HighlitedPath[]; type HighlitedPath = { path: RootPath; color: string; }; export {}; //# sourceMappingURL=graphviz.d.ts.map