export default class MemoryCache { private readonly ttl; private readonly entries; constructor(ttl: number); get(channelId: string): Promise; set(channelId: string, body: A): Promise; }