import { EdgeOptions, MarkerComponents, NodeOptions, PathGeneratorTypes, RecursivePartial } from 'dagre-reactjs'; import * as React from 'react'; declare type CustomPathsState = { nodes: Array>; edges: Array>; customPathGenerators: PathGeneratorTypes; customMarkerComponents: MarkerComponents; }; export declare class CustomPathsType extends React.Component<{}, CustomPathsState> { constructor(props: {}); render(): JSX.Element; } export {};