import { CoreEntity } from '../core/entity'; import { SearchOptions } from './search-options'; export interface LollyUser extends CoreEntity { userType: LollyUserType; email: string; userId: string; displayName: string; photoURL: string; businesses: string[]; brands: string[]; referrer?: string; searchOptions: SearchOptions; phoneNumber: string; firstName: string; lastName: string; zip: string; city: string; address: string; } export declare type LollyUserType = 'user' | 'business' | 'brand' | 'lollyAdmin' | 'reseller';