import { IConfig } from '../TYPES/Config';
/**
 * Initializes the download process by creating an instance of DownloadManager.
 *
 * @param {string} secMasterURL - The URL of the sec master file to be downloaded.
 * @param {IConfig} [config=DEFAULT_VALUES] - Optional configuration for the download manager.
 * Defaults to `{ requireSearchModule: false }` if not provided.
 * @returns {void}
 */
export declare function initializeDownload(secMasterURL: string, config?: IConfig): void;
