export class FakeAuth { constructor(currentUser?: {}); currentUserRecord: {}; createUserWithEmailAndPassword(...args: any[]): Promise<{ user: {}; }>; deleteUser(...args: any[]): Promise; signInWithEmailAndPassword(...args: any[]): Promise<{ user: {}; }>; signOut(): Promise; sendPasswordResetEmail(...args: any[]): void; verifyIdToken(...args: any[]): Promise; getUser(...args: any[]): Promise; createCustomToken(...args: any[]): Promise; setCustomUserClaims(...args: any[]): Promise; useEmulator(...args: any[]): void; get currentUser(): { uid: any; data: {}; }; } export const mockCreateUserWithEmailAndPassword: jest.Mock; export const mockDeleteUser: jest.Mock; export const mockSendPasswordResetEmail: jest.Mock; export const mockSendVerificationEmail: jest.Mock; export const mockSignInWithEmailAndPassword: jest.Mock; export const mockSignOut: jest.Mock; export const mockVerifyIdToken: jest.Mock; export const mockGetUser: jest.Mock; export const mockCreateCustomToken: jest.Mock; export const mockSetCustomUserClaims: jest.Mock; export const mockUseEmulator: jest.Mock; //# sourceMappingURL=auth.d.ts.map