#!/usr/bin/env node
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { config } from './utils/config.util.js';
/**
 * Start the MCP server with the specified transport mode
 *
 * @param mode The transport mode to use (stdio or sse)
 * @returns Promise that resolves to the server instance when started successfully
 */
export declare function startServer(mode?: 'stdio' | 'sse'): Promise<McpServer>;
export { Logger } from './utils/logger.util.js';
export { config };
export * from './utils/error.util.js';
export { VERSION, PACKAGE_NAME, CLI_NAME } from './utils/constants.util.js';
