/** * The default AI Models for ConfigPanel component. * * It includes the following providers: * - DeepSeek * - OpenAI * - Anthropic * - Google * - XAI * - Ollama * * You can override the default models by providing a different models. */ export declare const MODEL_PROVIDERS: { deepseek: { name: string; models: string[]; }; openai: { name: string; models: string[]; }; anthropic: { name: string; models: string[]; }; google: { name: string; models: string[]; }; xai: { name: string; models: string[]; }; ollama: { name: string; models: string[]; }; };