import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { IExecuteFunctions } from "n8n-core"; export interface IExecReturnData { exitCode: number; error?: Error; stderr: string; stdout: string; } export declare class Meshcentral implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise; }