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