import type { IExecuteFunctions, ILoadOptionsFunctions, INodeType, INodeTypeDescription, INodePropertyOptions, INodeExecutionData, ISupplyDataFunctions, SupplyData } from 'n8n-workflow'; export declare class HuduAiTools implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getToolResources: typeof getToolResources; getToolResourceOperations: typeof getToolResourceOperations; getEnrichmentToolOptions: typeof getEnrichmentToolOptions; }; }; supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise; execute(this: IExecuteFunctions): Promise; } declare function getToolResources(this: ILoadOptionsFunctions): Promise; declare function getToolResourceOperations(this: ILoadOptionsFunctions): Promise; declare function getEnrichmentToolOptions(this: ILoadOptionsFunctions): Promise; export {};