/** * Run options */ export interface RunOptions { /** Path to the compiled scraper JS file (e.g., ./dist/my-scraper/index.js or ./scrapers/my-scraper.js) */ scraper?: string; input?: string; config?: string; profile?: string; } /** * Run a scraper from its definition file. */ export declare function runScraper(options: RunOptions): Promise; //# sourceMappingURL=run.d.ts.map