import { ToolRendererProps } from '../../../config/types'; export type GeneratedImageRef = { attachmentId: string; name: string; mimeType?: string; url?: string; s3Key?: string; size?: number; }; export type ImageToolResult = { model?: string; prompt?: string; error?: string; images: GeneratedImageRef[]; }; export declare const coerceImageResult: (call: ToolRendererProps["call"]) => ImageToolResult; //# sourceMappingURL=helpers.d.ts.map