export default class Expirable { private readonly factory; private value; private valueExpires; constructor(factory: () => Promise<{ value: T; expiresInSeconds: number; }>); get(): Promise; }