type Options = { max?: number; ttl?: number; }; export default class Cache { private readonly cache; constructor(options?: Options); get(key: string): T | undefined; set(key: string, value: T): void; delete(key: string): void; del(key: string): void; clear(): void; } export {};