import { Node } from "../types/Node"; export declare type In = { /** Value to be forwarded. */ d_val: V; }; export declare type Out = { /** Forwarded input value. */ d_val: V; }; /** * Forwards input value unconditionally. * @link https://github.com/kwaia/flowcode.js/wiki/Noop */ export declare type Noop = Node, Out>; /** * Creates a Noop node. */ export declare function createNoop(): Noop;