import { Graph } from "graphlib"; import { EdgeConfig, GraphLabel, NodeConfig } from "./index"; export declare function layout(g: Graph, opts?: GraphLabel & NodeConfig & EdgeConfig & { debugTiming?: boolean; }): void;