/// <reference types="react" />
import { Group, Node } from "../../types";
declare type Props = {
    node: Node;
    fields: (JSX.Element | null)[] | undefined;
    phases: (JSX.Element | null)[] | undefined;
    index: number;
    type: Group;
};
/**
 * Used to create a single entry for a workflow or a dataset documentation.
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const ProcessInfo: ({ node, fields, phases, index, type }: Props) => JSX.Element;
export default ProcessInfo;
