export declare class ResopnCache { static requestCache: { [key: string]: { cb: (info: { code: number; [key: string]: any; }) => void; time: number; }; }; static requestGenId: number; static createId(): string; private static timeOutUpdata; static addCache(id: string, cb: (info: { code: number; [key: string]: any; }) => void): boolean; static onRecive(extId: string, info: { code: number; info: { [key: string]: any; }; errMsg: string; }): boolean; }