/// <reference types="react" />
import { Node } from "../../types";
declare type Props = {
    node: Node;
    nodes: Node[];
};
/**
 * Represents a single section on the function documentation.
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const ProcessSection: ({ node, nodes }: Props) => JSX.Element;
export default ProcessSection;
