import { InPort } from "../types/InPort"; import { OutPort } from "../types/OutPort"; /** * Establishes a connection between an output port and an input port. Data * emitted on an output port are automatically forwarded to connected input * ports. * @param outPort * @param inPort */ export declare function connect(outPort: OutPort, inPort: InPort): void;