export declare class Queue {
    #private;
    constructor(concurrent?: number);
    execute<T>(func: () => Promise<T>, key?: string | number): Promise<T>;
    clear(): void;
    count(): number;
}
//# sourceMappingURL=queue.d.ts.map