import { InPort } from "./InPort"; /** * A bundle of input ports. * Every node has exactly one input port bundle and one output port bundle. */ export declare type InPorts = { [K in keyof I]: InPort; };