interface SerializedResponse { status: number; statusText: string; headers: Record; body: string; } declare function serializeResponse(response: Response): Promise; export { type SerializedResponse, serializeResponse };