import{IExecuteFunctions}from'n8n-core';import{INodeExecutionData,INodeType,INodeTypeDescription}from'n8n-workflow';exportclassExampleNodeimplementsINodeType{description:INodeTypeDescription={// Basic node details hereproperties:[// Resources and operations here]};asyncexecute(this:IExecuteFunctions):Promise<INodeExecutionData[][]>{// Process data and return}};