import { ClientRequest } from "http";
export interface SocketKeepAliveOptions {
  keepAlive: boolean;
  keepAliveMsecs?: number;
}
export declare const setSocketKeepAlive: (
  request: ClientRequest,
  { keepAlive, keepAliveMsecs }: SocketKeepAliveOptions
) => void;
