/** * Proxy-only mode — runs the BlockRun payment proxy for Anthropic-compatible CLI agents. * The proxy translates requests and handles x402 payments so any compatible client can use any model. */ interface ProxyOptions { port?: string; model?: string; fallback?: boolean; debug?: boolean; version?: string; } export declare function proxyCommand(options: ProxyOptions): Promise; export {};