import type { AutomationEvent } from '../automations/domain/types.js'; export declare class TaskOutboxDispatcher { private readonly publish; constructor(publish: (event: AutomationEvent) => void); drain(limit?: number): number; }