import { IRequestClient, IFetchOptions, IHttpClientImpl, Runtime } from "@pnp/common-commonjs"; export declare class GraphHttpClient implements IRequestClient { protected _runtime: Runtime; private _impl; constructor(runtime?: Runtime); constructor(runtime?: Runtime, impl?: IHttpClientImpl); fetch(url: string, options?: IFetchOptions): Promise; fetchRaw(url: string, options?: IFetchOptions): Promise; get(url: string, options?: IFetchOptions): Promise; post(url: string, options?: IFetchOptions): Promise; patch(url: string, options?: IFetchOptions): Promise; delete(url: string, options?: IFetchOptions): Promise; } //# sourceMappingURL=graphhttpclient.d.ts.map