import { HttpOptions } from '../types/Http.js'; import { AxiosRequestConfig } from 'axios'; export declare const USER_AGENTS: { [key: string]: string; }; export declare function getDefaultUserAgentHeader(): { 'User-Agent': string; }; export declare function hostnameMatchesNoProxyPattern(hostname: string, pattern: string): boolean; export declare function shouldUseProxy(baseURL: string): boolean; export declare function getAxiosConfig(options: HttpOptions): AxiosRequestConfig;