/** * @returns returns a promise that resolves with an object containing data and an optionally returned context */ export default function request(method: "GET" | "POST" | "PUT" | "DELETE", url: string, options?: { accessToken?: string | null; data?: any; dataReceivedCallback?: ((chunk: any) => void) | null; dataRequestCallback?: ((bytes: number) => Promise | any) | null; context?: any; }): Promise<{ context: any; data: any; }>; //# sourceMappingURL=_index.d.ts.map