import { EmailAttachmentOptions } from '../types'; import { Attachment } from './Attachment'; /** * @deprecated Use Attachment instead */ export declare class EmailAttachment extends Attachment { /** * Legacy emailId field — maps to messageId */ get emailId(): string; set emailId(value: string); constructor(options?: EmailAttachmentOptions); /** * Get the email this attachment belongs to * @deprecated Use getMessage() instead */ getEmail(): Promise; } //# sourceMappingURL=EmailAttachment.d.ts.map