/**
 * Shared type for a node, e.g. in the agent graph.
 */
export interface Node {
    nodeId: string;
}
