import { type TestRequestReader } from './context'; type Fetch = typeof fetch; export declare const reader: TestRequestReader; export declare function handleFetch(originalFetch: Fetch, request: Request): Promise; export declare function interceptFetch(originalFetch: Fetch): () => void; export {};