import type { GroupCache, GroupDataSource } from '../types/DataSources'; export declare class RedisExpirationTimeGroupDataSource implements GroupDataSource { readonly name = "RedisExpirationTimeGroupedLoader"; private readonly parentAsyncCache; constructor(asyncCache: GroupCache); getFromGroup(key: string, group: string): Promise; getManyFromGroup(): Promise; }