using System; using System.Threading.Tasks; using Bit.App.Models; namespace Bit.App.Abstractions { public interface IAccountsManager { void Init(Func getOptionsFunc, IAccountsManagerHost accountsManagerHost); Task NavigateOnAccountChangeAsync(bool? isAuthed = null); } }