export declare function usePromiseQueue(): {
    enqueue: (task: () => Promise<any>) => void;
    isRunning: boolean;
    queueSize: number;
};
