import { ConfigOptions } from '../types'; /** * 配置管理类 */ export declare class Config { private static instance; private options; private constructor(); /** * 获取配置实例(单例模式) */ static getInstance(): Config; /** * 加载配置 */ private loadConfig; /** * 验证配置 */ private validateConfig; /** * 获取配置选项 */ getOptions(): Readonly; /** * 获取 App Key */ getAppKey(): string; /** * 获取 Secret Key */ getSecretKey(): string; /** * 获取基础 URL */ getBaseUrl(): string; /** * 获取超时时间 */ getTimeout(): number; /** * 获取最大重试次数 */ getMaxRetries(): number; /** * 获取 SSE 服务端口 */ static getPort(): number; } export declare const config: Config; //# sourceMappingURL=index.d.ts.map