import type { Cache, DataSource } from '../types/DataSources'; export declare class RedisExpirationTimeDataSource implements DataSource { readonly name = "RedisExpirationTimeLoader"; private readonly parentAsyncCache; constructor(asyncCache: Cache); get(key: string): Promise; getMany(): Promise; }