import { EmailMessage } from '../types/email.js';
export interface FormatOptions {
    includeBody?: boolean;
    includeHeaders?: boolean;
    maxBodyLength?: number;
    includeAttachments?: boolean;
}
/**
 * Format an email message for MCP output
 */
export declare function formatEmailForMCP(email: EmailMessage, options?: FormatOptions): string;
//# sourceMappingURL=formatters.d.ts.map