import type { HttpHeadersInterface } from "./headers"; export type ResponseType = "arraybuffer" | "blob" | "document" | "json" | "stream" | "text"; export interface ResponseInterface { data: ResponseData; status: number; headers: HttpHeadersInterface; } //# sourceMappingURL=response.d.ts.map