/**
 * @fileoverview Handles the registration of the `docwriter_compile_latex_to_pdf` tool
 * with an MCP server instance.
 * @module src/mcp-server/tools/compileLatexToPdf/registration
 */
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
/**
 * Registers the 'docwriter_compile_latex_to_pdf' tool and its handler with the MCP server.
 *
 * @param {McpServer} server - The MCP server instance to register the tool with.
 * @returns {Promise<void>} A promise that resolves when tool registration is complete.
 */
export declare const registerCompileLatexToPdfTool: (server: McpServer) => Promise<void>;
