export declare const addPending: (promise: Promise) => number; export declare const removeFromPending: (promise: Promise) => Promise[]; export declare const isItReady: () => boolean; /** * waits for all necessary imports to be fulfilled */ export declare const done: () => Promise;