import { type DiscordInboundJob } from "./inbound-job.js"; import type { RuntimeEnv } from "./message-handler.preflight.types.js"; type DiscordInboundWorkerParams = { runtime: RuntimeEnv; setStatus?: any; abortSignal?: AbortSignal; runTimeoutMs?: number; }; export type DiscordInboundWorker = { enqueue: (job: DiscordInboundJob) => void; deactivate: () => void; }; export declare function createDiscordInboundWorker(params: DiscordInboundWorkerParams): DiscordInboundWorker; export {};