import { HttpClientImpl } from "./httpclient"; /** * Makes requests using the SP.RequestExecutor library. */ export declare class SPRequestExecutorClient implements HttpClientImpl { /** * Fetches a URL using the SP.RequestExecutor library. */ fetch(url: string, options: any): Promise; /** * Converts a SharePoint REST API response to a fetch API response. */ private convertToResponse; }