export declare class PromiseTracker { protected promises: Set>; run(fn: () => Promise): Promise; add(promise: Promise): Promise; all(): Promise; }