import { Command } from "commander";
/**
 * Options for the MCP server command
 */
export interface McpCommandOptions {
    wallet?: string;
    relays?: string[];
    remote?: boolean;
    url?: string;
}
/**
 * Start the MCP server with the given options
 *
 * @param options Command line options
 */
export declare function startMcpServer(options: McpCommandOptions): Promise<void>;
/**
 * Register the MCP command with the CLI
 *
 * @param program The commander program
 */
export declare function registerMcpCommand(program: Command): void;
