/** * Tool: search_cpv_codes * Search CPV (Common Procurement Vocabulary) codes. */ import type { FastMCP } from "@prefecthq/fastmcp-ts/server"; import { z } from "zod"; /** * Schema for search_cpv_codes parameters. */ export declare const searchCpvCodesInputSchema: z.ZodObject<{ query: z.ZodString; lang: z.ZodDefault>; }, z.core.$strip>; export type SearchCpvCodesInput = z.infer; /** * Registers the search_cpv_codes tool. */ export declare function registerSearchCpvCodes(server: FastMCP): void;