export declare function fetch({ url, method, headers, body, timeoutInMS, }: {
    url: URL;
    method?: string;
    headers?: Record<string, string>;
    body?: string;
    timeoutInMS?: number;
}): Promise<{
    body: string;
    statusCode: number;
}>;
