import type { Database } from '../storage/db.js'; import type { EventBus } from './events.js'; export declare class CrawlWorker { private db; private eventBus; constructor(db: Database, eventBus: EventBus); crawl(libraryId: string, jobId: string): Promise; }