import { type PreparedPromptImage } from "./prepareImageForPrompt.js"; export declare const CLAUDE_IMAGE_MAX_BASE64_BYTES: number; export declare const CLAUDE_IMAGE_MAX_RAW_BYTES: number; export declare const CLAUDE_IMAGE_MAX_DIMENSION = 2000; /** Prepare an image using the same size and dimension policy as Claude Code. */ export declare function prepareImageForClaude(bytes: Uint8Array): Promise;