import type { Processor, WorkerOptions } from "bullmq"; export declare const defineWorker: (name: string, processor?: string | URL | null | Processor, opts?: Omit) => { name: string; processor: string | URL | Processor | null | undefined; opts: Omit | undefined; };