export default interface UserToken {
  user: {
    business_alias: string;
    id: string;
    email: string;
  };
  token: string;
}
