import type { AIProvider, CredentialValueSource } from "@arnilo/prism"; export interface OpenCodeGoProviderOptions { readonly id?: string; /** Defaults to official `https://opencode.ai/zen/go/v1`. */ readonly baseUrl?: string; readonly apiKey?: CredentialValueSource; readonly fetch?: typeof fetch; } export declare function createOpenCodeGoProvider(options?: OpenCodeGoProviderOptions): AIProvider;