import { Graph } from "./graph-lib";
import type { EdgeLabel, GraphLabel, LayoutOptions, NodeLabel } from "./types";
export declare function layout(g: Graph<GraphLabel, NodeLabel, EdgeLabel>, opts?: LayoutOptions): Graph<GraphLabel, NodeLabel, EdgeLabel>;