export declare class FirebaseUser { email: string; displayName: string; id: string; newUser: boolean; authenticatedWith: string; emailVerified: boolean; photoUrl: string; socialProfileUrl: string; sameCredentialExists: boolean; rawUserInfo: any; accountDisabled: boolean; profileUrls: any[]; constructor(firebaseAuthResult: any); } export declare class SocialUser extends FirebaseUser { constructor(firebaseAuthResult: any); } export declare class UserProfile extends FirebaseUser { constructor(firebaseUserInfo: any); }