import { z } from 'zod';
import type { ElsClient } from '../elsClient.js';
import type { ToolResult } from '../types.js';
/**
 * Tool: traffic_stats
 * Mapping: GET /analytics/traffic → analytics.routes.ts:268
 * Upstream Zod: HistogramSchema (тот же что и histogram — from+to+фильтры).
 *
 * Возвращает perService с RPM-сериями и latency p50/p95/p99 + summary.
 */
export declare const trafficStatsInputShape: {
    from: z.ZodString;
    to: z.ZodString;
    level: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
    serviceName: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
    appVersion: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
};
export declare const trafficStatsToolDef: {
    name: string;
    title: string;
    description: string;
    inputShape: {
        from: z.ZodString;
        to: z.ZodString;
        level: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
        serviceName: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
        appVersion: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
    };
};
type Args = {
    from: string;
    to: string;
    level?: string[];
    serviceName?: string[];
    appVersion?: string[];
};
export declare function handleTrafficStats(args: Args, client: ElsClient): Promise<ToolResult>;
export {};
//# sourceMappingURL=trafficStats.d.ts.map