import Gender from './gender.js'; import Education from './education.js'; import Phone from './phone.js'; import Like from './like.js'; import Work from './work.js'; interface Identity { provider?: string; providerUID?: string; providerUIDSig?: string; mappedProviderUIDs?: Array<{ providerUID: string; apiKey: string; }>; isLoginIdentity?: Boolean; nickname?: string; allowsLogin: Boolean; lastLoginTime: string; photoURL?: string; thumbnailURL?: string; firstName?: string; lastName?: string; gender?: Gender; birthDay?: number; birthMonth?: number; birthYear?: number; email?: string; country?: string; state?: string; city?: string; zip?: string; profileURL?: string; languages?: string; address?: string; phones?: Array; education?: Array; honors?: string; professionalHeadline?: string; bio?: string; industry?: string; specialties?: string; religion?: string; politicalView?: string; interestedIn?: Array; relationshipStatus?: string; hometown?: string; likes?: Array; favorites?: Object; followersCount?: number; followingCount?: number; username?: string; locale?: string; verified?: boolean; timezone?: string; missingPermissions?: string; samlData?: Object; work?: Array; } export type { Identity, Identity as default };