export declare class SequentialQueue { private queues; private processing; runSequential(agentId: string, fn: () => Promise): Promise; private processQueue; getQueueSize(agentId: string): number; isProcessing(agentId: string): boolean; clearQueue(agentId: string): void; clearAll(): void; } export declare const sequentialQueue: SequentialQueue; export declare function runSequential(agentId: string, fn: () => Promise): Promise; //# sourceMappingURL=sequential_queue.d.ts.map