type InvitedUser = {
  email: string;
  status: 'invited' | 'active';
};

export type {InvitedUser};
