/** * Source-worker configs are sensitive operator material, equivalent to the * daemon auth.token. They contain daemonToken and select handlerModule code * that this process dynamically imports and executes. */ export interface SourceWorkerConfig { pollIntervalMs: number; stateFile: string; daemonUrl: string; daemonToken: string; handlerModule: string; /** Optional named export to load from handlerModule instead of default/sourceWorker. */ handlerExport?: string; sources: TSource[]; } export declare function loadSourceWorkerConfig(configPath: string): Promise>; //# sourceMappingURL=source-worker-config.d.ts.map