export declare enum EmailParts {
    BodyStructure = "bodyStructure",
    Flags = "flags",
    Size = "size",
    AttachmentsInfo = "attachmentsInfo",
    TextContent = "textContent",
    HtmlContent = "htmlContent",
    Headers = "headers"
}
export declare const EmailPartsDescriptions: {
    readonly textContent: "Include the plain text content of emails - ideal for reading and analysis";
    readonly htmlContent: "Include the HTML formatted content - useful for preserving formatting";
    readonly attachmentsInfo: "Include information about attachments (filenames, sizes) - useful for file processing";
    readonly flags: "Include email status flags (read/unread, flagged, etc.) - useful for status analysis";
    readonly size: "Include email size in bytes - useful for storage analysis";
    readonly bodyStructure: "Include technical email structure - useful for advanced processing";
    readonly headers: "Include email headers - useful for routing, security, and technical analysis";
};
