export declare class PromiseStore {
    private promises;
    add(promise: Promise<unknown>): void;
    allSettled(): Promise<void>;
}
