/** * Main workflow orchestration * Orchestrate scan -> hash -> exists? -> upload */ import { CliOptions, RunSummary } from '../types.js'; import { Reporter } from '../output/reporter.js'; export interface WorkflowOptions { config: CliOptions; reporter: Reporter; } /** * Process ROMs through the full workflow */ export declare function processRoms(options: WorkflowOptions): Promise; //# sourceMappingURL=process-roms.d.ts.map