import { ExecuteParams, InternalNode } from "."; export interface RunNodeOptions extends Omit { onOutputs?: (key: string, data: any) => void; executionDelay?: number; } export declare function runNode(node: InternalNode, inputs: TInputs, options?: RunNodeOptions): Promise; //# sourceMappingURL=run-node.d.ts.map