import { type Agent } from "http"; export declare function fetch({ url, method, headers, body, timeoutInMS, agent, }: { url: URL; method?: string; headers?: Record; body?: string; timeoutInMS?: number; agent?: Agent; }): Promise<{ body: string; statusCode: number; }>;