import type { IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData, IHookFunctions, IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData } from 'n8n-workflow'; export declare class FoxActionTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getActions(this: ILoadOptionsFunctions): Promise; }; }; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; webhook(this: IWebhookFunctions): Promise; }