/** * Intelligent Parameter Generator * * Generates appropriate parameters for n8n nodes based on node type and context. * Uses knowledge of real n8n node requirements to create working workflows. */ import type { INodeParameters } from 'n8n-workflow'; export interface ParameterContext { description?: string; previousNode?: string; isFirstNode?: boolean; workflowType?: 'webhook' | 'scheduled' | 'manual' | 'event'; } /** * Generate parameters for a node based on its type and context */ export declare function generateNodeParameters(nodeType: string, context?: ParameterContext): INodeParameters; /** * Detect if a node type is a trigger */ export declare function isTriggerNode(nodeType: string): boolean; /** * Get recommended trigger type based on description */ export declare function getRecommendedTrigger(description: string): string; //# sourceMappingURL=parameter-generator.d.ts.map