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 { JwtService } from '../services/jwt.service'; import { SocialCredentialsDto } from '../../auth/dto/credentials/social-credentials.dto'; export declare class AppleAuthProvider extends SocialAuthProvider { protected readonly userRepository: Repository; protected readonly authIdentityRepository: Repository; private readonly jwtService; providerName: string; skipMfa: boolean; private get appleConfig(); protected resolveEnabled(): boolean; private appleAuth?; private jwksCache?; constructor(userRepository: Repository, authIdentityRepository: Repository, jwtService: JwtService); validate(credentials: SocialCredentialsDto): Promise<{ userId: any; email: any; emailVerified: boolean; metadata: any; }>; getRequiredFields(): string[]; private verifyIdentityToken; private getApplePublicKey; private findJwk; private refreshJwks; private exchangeAuthorizationCode; private safeDecode; } //# sourceMappingURL=apple-auth.provider.d.ts.map