export declare const graphsJSON: (props: any, treeData: any) => {
    type: string;
    version: string;
    styles: string;
    props: {
        chartOptions: {
            tooltip: {
                trigger: string;
                formatter: string;
            };
            series: {
                type: string;
                data: any[];
                top: string;
                bottom: string;
                layout: string;
                symbol: string;
                symbolSize: number;
                animationDurationUpdate: number;
                emphasis: {
                    focus: string;
                };
            }[];
        };
    };
};
