export default class Queue { head: number; tail: number; get isEmpty(): boolean; store: Map; onDataAvailable: any; finished: boolean; peek(): any; waitForPeek(): Promise; enqueue(item: T): void; dequeue(): any; } //# sourceMappingURL=Queue.d.ts.map