import type { McpServer } from "@modelcontextprotocol/server";
import type { ILogger } from "../../../core/logger.js";
/**
 * Register prompt handlers with MCP server
 *
 * Prompts are registered through the high-level `registerPrompt` API: argument
 * validation is derived from the Zod schemas, and the SDK serves
 * `prompts/list` / `prompts/get` (including the 2026-07-28 cache fields) from
 * these registrations.
 */
export declare function registerTdPrompts(server: McpServer, logger: ILogger): void;
