import { Repository } from 'typeorm'; import { SocialAuthProvider } from './social-auth.provider'; import { NestAuthUser } from '../../user/entities/user.entity'; import { NestAuthIdentity } from '../../user/entities/identity.entity'; import { SocialCredentialsDto } from '../../auth/dto/credentials/social-credentials.dto'; export declare class GoogleAuthProvider extends SocialAuthProvider { protected readonly userRepository: Repository; protected readonly authIdentityRepository: Repository; providerName: string; skipMfa: boolean; private get googleConfig(); protected resolveEnabled(): boolean; constructor(userRepository: Repository, authIdentityRepository: Repository); private getClient; validate(credentials: SocialCredentialsDto, _tenantId?: string): Promise<{ userId: any; email: any; emailVerified: boolean; metadata: { name: any; picture: any; locale: any; }; }>; getRequiredFields(): string[]; } //# sourceMappingURL=google-auth.provider.d.ts.map