export declare class Config { /** * websocks 服务地址 */ host: string; /** * 端口 */ port: number; /** * 消息等待超时时间(单位毫秒) */ timeout: number; /** * 日志模式 */ mode: "debug" | "release"; /** * 签名秘钥 */ secret: string; urlParam?: string; browserId?: string; }