/** * 邮箱适配器 * * 支持 IMAP+SMTP、Exchange Online (Microsoft Graph)、Exchange 自建 (EWS)。 * 工具通过 executorType(email-*) 路由到 work-client 运行时执行器(见 mcp.service)。 * * 字段读取兼容规范键(emailProtocol / smtp* / imap* / exchange* / ews*)。 */ import type { DataSourceConfig, DiscoveredTool, ConnectionTestResult, DataSourceAdapter, MCPServerConfig } from '../types.js'; export declare class EmailAdapter implements DataSourceAdapter { readonly type: "email"; readonly label = "\u90AE\u7BB1"; readonly drivers: string[]; testConnection(config: DataSourceConfig): Promise; private testImap; private testExchange; private testEws; discoverTools(_config: DataSourceConfig): Promise; generateManifest(config: DataSourceConfig, _tools?: DiscoveredTool[]): Record; generateMCPServerConfigs(_config: DataSourceConfig, _tools?: DiscoveredTool[]): MCPServerConfig[]; } //# sourceMappingURL=email-adapter.d.ts.map