import type { ChannelPlugin } from "openclaw/plugin-sdk"; import type { ResolvedEmailAccount, ParsedEmail, ReplyTo } from "./types.js"; import type { A2AContext } from "./types.js"; /** * Build email body with metadata for AI agent * Note: Email sending instructions are in skills/email-send/SKILL.md */ export declare function buildEmailBodyForAgent(email: ParsedEmail, myEmail: string, replyTo: ReplyTo, a2aContext?: A2AContext): string; export type { EmailGroup } from "./reply-mode/dispatcher.js"; export { parseEmailReplyTags, buildGroupKey } from "./reply-mode/dispatcher.js"; /** * Email channel plugin */ export declare const emailPlugin: ChannelPlugin;