export type AsyncStorage = { getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; }; export default class StatsigAsyncStorage { static asyncStorage: AsyncStorage; static getItemAsync(key: string): Promise; static setItemAsync(key: string, value: string): Promise; static removeItemAsync(key: string): Promise; }