declare abstract class UserPropertiesStorageService { abstract save(key: string, value: T): void; abstract load(key: string): T | null; abstract delete(key: string): void; } export { UserPropertiesStorageService };