//#region src/commands/download.d.ts
type DownloadOptions = {
  filterCountries?: string[];
  clearCache?: boolean;
  noCache?: boolean;
  ttlMs?: number;
  debug?: boolean;
};
declare function DownloadCommand(outputDirPath: string, options: DownloadOptions): Promise<void>;
//#endregion
export { DownloadCommand };