import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare class AgentMail implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getInboxes(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }