export interface BlinkResponse extends Response { status: number; ok: boolean; json: () => Promise; text: () => Promise; clone: () => BlinkResponse; headers: Headers; redirected: boolean; statusText: string; url: string; body: ReadableStream | null; bodyUsed: boolean; arrayBuffer: () => Promise; blob: () => Promise; formData: () => Promise; bytes: () => Promise; userAgent: string; } //# sourceMappingURL=response.d.ts.map