import { IHttpClient, IHttpClientResponse } from "./IHttpClient"; export declare class SandboxProxyGraphClient implements IHttpClient { protected baseClient: IHttpClient; constructor(baseClient?: IHttpClient); get(url: string, options?: RequestInit | undefined): Promise; post(url: string, options?: RequestInit | undefined): Promise; patch(url: string, options?: RequestInit | undefined): Promise; put(url: string, options?: RequestInit | undefined): Promise; delete(url: string): Promise; protected appendAuthHeader: (options: RequestInit | undefined) => RequestInit; }