/** * Tool: get_tender_details * Get detailed information about a specific tender. */ import type { FastMCP } from "@prefecthq/fastmcp-ts/server"; import { z } from "zod"; /** * Schema for get_tender_details parameters. * Exported so tests can import the source of truth. */ export declare const getTenderDetailsInputSchema: z.ZodObject<{ projectId: z.ZodString; publicationId: z.ZodString; lang: z.ZodDefault>; fullRaw: z.ZodDefault; }, z.core.$strip>; export type GetTenderDetailsInput = z.infer; /** * Handler for get_tender_details. Exported for tests. */ export declare function handler(params: GetTenderDetailsInput): Promise; /** * Registers the get_tender_details tool. */ export declare function registerGetTenderDetails(server: FastMCP): void;