import { ICredentialTestFunctions, ICredentialsDecrypted, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { loadMailboxList } from './utils/SearchFieldParameters'; export declare class Imap implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise; methods: { listSearch: { loadMailboxList: typeof loadMailboxList; }; credentialTest: { testImapCredentials(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise; }; }; }