import type { ProviderImageInput } from "./types.js"; export interface ResolvedProviderImageInput { name?: string; mediaType: string; base64Data: string; sourcePath?: string; } export declare function resolveProviderImageInputs(params: { providerId: string; images?: ProviderImageInput[]; cwd?: string; maxCount?: number; maxBytesPerImage?: number; }): Promise; export declare function imageExtensionForMediaType(mediaType: string): string; export declare function renderImagePathContext(imagePaths: string[]): string;