import { BaseClient } from './base'; /** * OpenRouter 模型客户端实现 */ export declare class OpenRouterClient extends BaseClient { private openrouter; /** * 创建 OpenRouter 客户端 * @param config 配置信息 */ constructor(config: Record); /** * 获取模型实例 * @returns OpenRouter模型实例 */ protected _getModel(): any; }