export type ProviderId = 'claude-cli' | 'claude-tui' | 'copilot-cli' | 'copilot-sdk' | 'opencode-cli' | 'opencode-sdk' | 'grok-cli' | 'grok-tui' | 'dummy'; export interface ProviderConfig { label: string; /** VS Code extension ID required for this provider (empty string for CLI providers). */ extensionId: string; /** True for providers that run in a VS Code terminal instead of the chat UI. */ isCli?: boolean; } export declare const PROVIDERS: Record;