import { Graph, GraphLike } from "./graph"; export declare function write(g: GraphLike): any; export declare function read(json: { options: { directed: boolean; multigraph: boolean; compound: boolean; }; nodes: any[]; edges: any[]; value: any; }): Graph;