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