import type { ContentBlockParam } from '@anthropic-ai/sdk/resources'; export interface ImageBlockAttachment { readonly mediaType: 'image/png' | 'image/jpeg' | 'image/gif' | 'image/webp'; readonly bytes: Buffer; } export declare function appendImageBlocks(blocks: ContentBlockParam[], attachments: readonly ImageBlockAttachment[] | undefined): void;