export declare class Graph {
    root: any;
    constructor({ root }: {
        root: any;
    });
    toJson(): string;
}
