import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; import { getLoadZnsTemplateParameters } from './EsmsLoadFunctions'; import { getListBrandname, getListZaloOA, getListZnsTemplate } from './EsmsSearchFunctions'; export declare class EsmsNode implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getLoadZnsTemplateParameters: typeof getLoadZnsTemplateParameters; }; listSearch: { getListBrandname: typeof getListBrandname; getListZaloOA: typeof getListZaloOA; getListZnsTemplate: typeof getListZnsTemplate; }; }; webhook(this: IWebhookFunctions): Promise; execute(this: IExecuteFunctions): Promise; }