/**
 * Inspect Enclave Server command implementation
 */
import { Command } from 'commander';
/**
 * Run the inspect command
 * @param pubkey Public key of the service
 * @param relay Relay URL of the service
 * @returns Result of the inspect operation
 */
export declare function runInspectCommand(pubkey: string, relay: string): Promise<void>;
/**
 * Register the inspect command with the CLI
 * @param program Commander program instance
 */
export declare function registerInspectCommand(program: Command): void;
