/// <reference types="react" />
import { Node } from "../../types";
import "../../styles/Functions.css";
import "highlight.js/styles/atom-one-light.css";
declare type Props = {
    nodes: Node[];
    network: string;
};
declare const Functions: ({ nodes, network }: Props) => JSX.Element;
export default Functions;
