import { Hono } from 'hono'; import type { CompletionEngine, CreateTransportMuxAppOptions, ProxyConfig, RunningProxyServer } from './types.js'; export declare function createTransportMuxApp({ config, completionEngine, costFeedbackSink, costFeedbackMetadata }: CreateTransportMuxAppOptions): Hono; export declare function startProxyServer(config: ProxyConfig, completionEngine?: CompletionEngine): Promise;