export declare class AsyncCache { private readonly _attempts; private readonly _fn; constructor(fn: (k: K) => Promise); get(k: K): Promise; }