import type { RequestHook } from '../core/hooks.js'; type StringMap = Record; type Blocks = { query?: StringMap; cookies?: StringMap; json?: StringMap; form?: StringMap; }; export declare const requestHook: RequestHook; export declare const request: (method: string, url: string, _headers: StringMap, blocks: Blocks, bodyRaw: string, hook: RequestHook) => Promise<{ status: number; headers: Headers; body?: string; url: string; }>; export {};