import { Input } from './input';
import { Task } from './task';
export declare class Node {
    id: string;
    graphId: string;
    type: string;
    adjacentTo: string[];
    adjancentFrom: string[];
    output: string | null;
    nodeOutput(): string;
}
export type NodeTypes = Task | Input;
//# sourceMappingURL=node.d.ts.map