import { Awaitable } from '../Types'; import { IAsyncCacheItem, IExpiryPolicyDelegate } from './_types'; export default class AsyncCacheItem implements IAsyncCacheItem { #private; constructor(promiseOrValueOrFactory: Awaitable | (() => Awaitable), expiryPolicy: IExpiryPolicyDelegate); getValueAsync(): Promise; }