import * as React from "react"; import { NodeProps } from "../types"; /** * Node is a rectangle within a Kaavio diagram. * It can be mapped to other pathway elements. For example, in PVJS this is mapped to metabolites and proteins. */ export declare class Node extends React.Component { containerRef: any; constructor(props: NodeProps); componentWillReceiveProps(nextProps: any): void; renderIcon(): JSX.Element; render(): JSX.Element; }