declare const PlatformRequest: { new (input: RequestInfo | URL, init?: RequestInit | undefined): Request; prototype: Request; }; type PlatformRequest = Request; declare const PlatformResponse: { new (body?: BodyInit | null | undefined, init?: ResponseInit | undefined): Response; prototype: Response; error(): Response; redirect(url: string | URL, status?: number | undefined): Response; }; type PlatformResponse = Response; export { PlatformRequest as Request, PlatformResponse as Response };