export interface PersistenceDriver { get(key: string): string | null | Promise; set(key: string, value: string): void | Promise; remove(key: string): void | Promise; }