export declare const promiseStore: Map<string, Promise<unknown>>;
/** Makes sure a promise is called just once if called again while already resolving. Currently used only in refresh token logic to not refresh on multiple api calls */
export declare function singlePromise<T>(promiseFn: () => Promise<T>, key: string): Promise<T>;
