import axios, { type AxiosRequestConfig } from 'axios'; import { type ScannerProperties } from './types'; export declare function getHttpAgents(properties: ScannerProperties): Promise>; export declare function resetAxios(): void; export declare function initializeAxios(properties: ScannerProperties): Promise; export declare function fetch(config: AxiosRequestConfig): Promise>; export declare function download(url: string, destPath: string, overrides?: AxiosRequestConfig): Promise;