import React from 'react'; interface IGraphViewProps { data: any; schemaData: any; graphId: string; } export declare function transGraphSchema(schema: any): { nodes: any; edges: any; }; declare const GraphView: React.FunctionComponent; export default GraphView;