import { run as proxyRun } from '../proxy/proxy.js'; import { startFallbackProxy } from '../proxy/api-proxy.js'; import type { CommandContext } from './context.js'; export { __resetWarnedOnceForTests, warnUntrackedApiKeyIfNeeded } from './passthrough-warn.js'; export { resolveRoutingForPassthrough } from './passthrough-routing.js'; export type { RoutingForPassthroughInput } from './passthrough-routing.js'; export declare function handlePassthrough(ctx: CommandContext, passthroughArgs: string[], deps?: { startProxy?: typeof startFallbackProxy; runClaude?: typeof proxyRun; }): Promise;