/** * Runtime helpers for fluent API * * Implements .out(), .to(), .in(), .uses(), .error() */ import { NodeProxy } from './types.js'; /** * Create a node proxy for fluent API * * This allows syntax like: * this.ScheduleTrigger.out(0).to(this.Configuration.in(0)) */ export declare function createNodeProxy(propertyName: string): NodeProxy; /** * Create .output property for AI sub-nodes * * This allows syntax like: * this.Agent.uses({ * ai_languageModel: this.GeminiModel.output * }) */ export declare function createOutputReference(propertyName: string): { output: { _propertyName: string; }; }; //# sourceMappingURL=helpers.d.ts.map