/** * Tool: search_bkp_codes * Search BKP (Baukostenplan) codes for construction projects. */ import type { FastMCP } from "@prefecthq/fastmcp-ts/server"; import { z } from "zod"; /** * Schema for search_bkp_codes parameters. */ export declare const searchBkpCodesInputSchema: z.ZodObject<{ query: z.ZodString; lang: z.ZodDefault>; }, z.core.$strip>; export type SearchBkpCodesInput = z.infer; /** * Registers the search_bkp_codes tool. */ export declare function registerSearchBkpCodes(server: FastMCP): void;