/** * Storage Provider Interface * Generic storage interface for auth operations */ export interface IStorageProvider { get(key: string): Promise; set(key: string, value: string): Promise; remove(key: string): Promise; }