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