<?php
declare(strict_types=1);

namespace Oscar\MailEngine\MimeContent;

interface MimeContentInterface
{
    // ... existing methods ...

    /**
     * Get attachment stream as PHP resource.
     */
    public function getAttachmentStream(string $messageId, int $idx, string $accountId): mixed;
}