/** * Tool: browse_cpv_tree * Browse CPV code hierarchy. */ import type { FastMCP } from "@prefecthq/fastmcp-ts/server"; import { z } from "zod"; /** * Schema for browse_cpv_tree parameters. */ export declare const browseCpvTreeInputSchema: z.ZodObject<{ parentCode: z.ZodOptional; lang: z.ZodDefault>; }, z.core.$strip>; export type BrowseCpvTreeInput = z.infer; /** * Registers the browse_cpv_tree tool. */ export declare function registerBrowseCpvTree(server: FastMCP): void;