export interface IAQueueOptions { batch?: number; } export declare abstract class AQueue { list: any; batch: any; constructor({ batch, }: IAQueueOptions); add(items: any): Promise; abstract send(items: any): any; } //# sourceMappingURL=AQueue.d.ts.map