import { IHookFunctions, IWebhookFunctions } from 'n8n-core'; import { INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class ToolzzTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; }