export declare class HttpClientMock { called?: boolean; methodCalled?: string; urlCalled?: string; sentBody?: any; errorToThrow?: Error; returnValue?: any; constructor(); set accessToken(_value: string); post(url: string, body: any | null): Promise; put(url: string, body: any | null): Promise; get(url: string): Promise; delete(url: string): Promise; setReturnValue(returnValue: T): void; setThrowError(error: Error): void; awaitNetworkCall(): Promise; }