export interface TokenStorage { get: (key: string) => Promise; set: (key: string, value: string) => Promise; }