import * as graphviz from "../src/render/graphviz"; import * as cytoscape from "../src/render/cytoscape"; export declare enum Renderers { GRAPHVIZ = "graphviz-png", CYTOSCAPE = "cytoscape-html" } export declare class CdkDia { generateDiagram(treeJsonPath: string, targetPath: string, collapse: boolean, collapseDoubleClusters: boolean, cdkBasePath: string, includedStacks: string[] | false, excludedStacks: string[] | undefined, renderer: Renderers): Promise; }