import type { Provider, ProviderConfig, ProviderRequest, ProviderResponse } from "./ProviderTypes.js"; export declare class CodexCliProvider implements Provider { private config; /** Driven through the codex CLI's text interface; no structured tool calls. */ readonly supportsToolCalls = false; name: string; constructor(config: ProviderConfig); generate(request: ProviderRequest): Promise; } //# sourceMappingURL=CodexCliProvider.d.ts.map