export declare class Queue { urls: string[]; constructor(); enqueue(url: string): number; dequeue(): string | undefined; isEmpty(): boolean; isURLInQueue(url: string): boolean; }