import { G6 } from '@ant-design/graphs'; import type { GraphData, TreeGraphData } from '../types'; export declare function visTreeData2GraphData(data: TreeGraphData): G6.GraphData; export declare function visGraphData2GraphData(data: GraphData): { nodes: { id: string; style: { labelText: string; }; }[]; edges: { source: string; target: string; style: { labelText: string | undefined; }; }[]; };