import type { IHookFunctions, ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; import { getParsers } from './GenericFunctions'; export declare class ParseurTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getParsers: typeof getParsers; getTableFields: (this: ILoadOptionsFunctions) => Promise; }; }; webhook(this: IWebhookFunctions): Promise; webhookMethods: { default: { checkExists: (this: IHookFunctions) => Promise; create: (this: IHookFunctions) => Promise; delete: (this: IHookFunctions) => Promise; }; }; }