export default interface IUserDataStore { get(key: string, defaultValue: string): Promise; set(key: string, value: string): Promise; }