import type { Url } from "../reports/Validation.js"; interface IDownloadOptions { signal?: AbortSignal; timeout?: number; } export declare function downloadJson(url: Url, { signal, timeout }?: IDownloadOptions): Promise; export {};