import { AQueue } from './AQueue'; export interface IMongoApiQueueOptions { batch?: number; key: string; queueName?: string; dbName?: string; colName?: string; } export declare class AMongoApiQueue extends AQueue { list: any; batch: any; key: any; queueName: any; dbName: string; colName: string; timer: any; constructor({ batch, key, queueName, dbName, colName, }: IMongoApiQueueOptions); send(items?: any): Promise; } //# sourceMappingURL=AMongoApiQueue.d.ts.map