import { z } from "zod"; import type { Tier } from "../types.js"; export declare const comparePricesSchema: { model_name: z.ZodOptional; model_family: z.ZodOptional; direction: z.ZodOptional>; modality: z.ZodOptional; limit: z.ZodDefault; }; export declare function handleComparePrices(params: z.infer>, tier: Tier): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=compare-prices.d.ts.map