import { z } from 'zod';
import type { ElsClient } from '../elsClient.js';
import type { ToolResult } from '../types.js';
/**
 * Tool: get_log_details
 * Mapping: GET /errors/:traceId → analytics.routes.ts:213
 *
 * Default response_format = "full" (debug-обычное ожидание).
 * 404 от ELS → ToolError('NOT_FOUND').
 */
export declare const getLogDetailsInputShape: {
    traceId: z.ZodString;
    response_format: z.ZodDefault<z.ZodEnum<["compact", "full"]>>;
};
export declare const getLogDetailsToolDef: {
    name: string;
    title: string;
    description: string;
    inputShape: {
        traceId: z.ZodString;
        response_format: z.ZodDefault<z.ZodEnum<["compact", "full"]>>;
    };
};
type Args = {
    traceId: string;
    response_format: 'compact' | 'full';
};
export declare function handleGetLogDetails(args: Args, client: ElsClient): Promise<ToolResult>;
export {};
//# sourceMappingURL=getLogDetails.d.ts.map