import { z } from "zod"; import type { Tier } from "../types.js"; export declare const listVendorsSchema: { region: z.ZodOptional; country: z.ZodOptional; }; export declare function handleListVendors(params: z.infer>, tier: Tier): Promise<{ content: { type: "text"; text: string; }[]; }>; //# sourceMappingURL=list-vendors.d.ts.map