export declare class HttpResponseError extends Error { response: any; constructor(response: Response); } export declare const uuidGenerator: { generate: () => `${string}-${string}-${string}-${string}-${string}`; }; export declare class HttpRequestUtil { request(url: string, opts: any, json?: boolean): Promise; }