import { TypeGraph } from '../core/type-graph';

declare global {
    interface Window {
        Viz?: any;
        d3?: any;
    }
}
export declare function renderGraph(typeGraph: TypeGraph): Promise<{
    svg: SVGSVGElement;
    panZoom: any;
}>;
