import { UserTypes } from './user-types'; export interface UserInformation { email: string; name: string; phone: string; type: UserTypes; }