import { default as React, HTMLProps } from 'react'; export interface IpldGraphProps extends HTMLProps { root: string; links: string[]; } declare const IpldGraph: React.FC; export default IpldGraph;