export interface Cache { get(key: string): T | undefined; set(key: string, value: T): void; delete(key: string): void; clear(): void; }