import { z } from "zod"; import type { Tier } from "../types.js"; export declare const getIndexBenchmarksSchema: { index_code: z.ZodOptional; index_category: z.ZodOptional; limit: z.ZodDefault; }; export declare function handleGetIndexBenchmarks(params: z.infer>, tier: Tier): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=get-index-benchmarks.d.ts.map