import type { INodeType, INodeTypeDescription, INodeExecutionData, IExecuteFunctions } from 'n8n-workflow'; import { getParsers } from './GenericFunctions'; export declare class Parseur implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getParsers: typeof getParsers; }; }; execute(this: IExecuteFunctions): Promise; }