import type { Operation } from "effection"; import type { Staticalizer } from "./staticalize.js"; export interface DownloadError { url: string; referrer: string; error: Error; } export interface ProgressResult { errors: DownloadError[]; } export interface WithProgressOptions { host: string; dir: string; staticalizer: Staticalizer; } export declare function withProgress(options: WithProgressOptions): Operation; //# sourceMappingURL=progress.d.ts.map