interface CreateRequestOptions { method?: string; body?: unknown; headers?: Record; } /** * Request factory for Cloudflare Workers tests. * Defaults to GET, http://localhost as base. * Auto-serializes object bodies to JSON with Content-Type header. */ declare function createRequest(path: string, options?: CreateRequestOptions): Request; export { createRequest };