export interface IMongoQueueOptions { mongoUrl?: string; dbName?: string; collectionName: string; key: string | string[]; batch?: number; queueName: string; } export declare class AMongoQueue { list: any; indexNames: any; batch: any; dbName: any; collectionName: any; key: any; mongoUrl: any; queueName: any; constructor({ dbName, collectionName, batch, key, mongoUrl, queueName }: { dbName?: string; collectionName: any; batch?: number; key: any; mongoUrl?: string; queueName: any; }); add(items: any[]): Promise; send(items?: any[]): Promise; } //# sourceMappingURL=AMongoQueue.d.ts.map