import type { GetMetadataFromImageArgs } from '../types/history.js';
import type { ToolContext } from './types.js';
/**
 * 画像ファイルからメタデータを読み取る
 * PNG: tEXtチャンク、JPEG/WebP: EXIFからメタデータを解析
 */
export declare function getMetadataFromImage(context: ToolContext, args: GetMetadataFromImageArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
//# sourceMappingURL=getMetadataFromImage.d.ts.map