/** * A queue that is faster than an array at large throughput */ export declare class LinkedQueue { private head?; private last?; constructor(items?: Iterable); push(value: A): void; shift(): A | undefined; }