import { IncomingMessage } from "http";
/**
 * We are wrapping the response handler for outgoing HTTP requests to detect redirects.
 * If the response is a redirect, we will add the redirect to the context to be able to detect SSRF attacks with redirects.
 */
export declare function wrapResponseHandler(args: unknown[], module: "http" | "https", fn: Function): (res: IncomingMessage) => void;
