/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { IHttpClient, RequestConfig, Response } from '../services/index.js'; import type { IAuthenticationProvider } from '../Types/PlayerActions.types.js'; export declare class ActionsHttpClient implements IHttpClient { private _authenticationProvider; constructor(_authenticationProvider: IAuthenticationProvider); get(url: string, config?: RequestConfig): Promise>; post(url: string, config?: RequestConfig): Promise>; patch(url: string, config?: RequestConfig): Promise>; put(url: string, config?: RequestConfig): Promise>; delete(url: string, config?: RequestConfig): Promise>; private _sendRequestAsync; private _transformHeaders; } //# sourceMappingURL=HttpClient.d.ts.map