import { HttpRequest, HttpResponse, ITool, RetryOptions } from '../itool'; export declare class Tool implements ITool { retry(promiseFunc: () => Promise, options?: RetryOptions): Promise; http(request: HttpRequest): Promise; setLaneName(laneName: string): void; mockUserID(userID: number): void; getLogID(): string; } /** * 工具方法 */ export declare const tool: ITool;