/// <reference types="react" />
import { Node, Group } from "../../types";
import "../../styles/Processes.css";
declare type Props = {
    nodes: Node[];
    type: Group;
};
/**
 * Used to generate a set of tables describing ether all the workflows or
 * datasets in a Hailer workspace decided with the prop `type`.
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const Tables: ({ nodes, type }: Props) => JSX.Element;
export default Tables;
