import { PassportSerializer } from '@nestjs/passport'; import { IAuthUser } from './interfaces/auth.user'; import { AuthService } from './service'; export declare class UserSerializer extends PassportSerializer { protected readonly authService: AuthService; constructor(authService: AuthService); serializeUser(user: User, done: (e?: Error, payload?: any) => void): void; deserializeUser(payload: Record, done: (e?: Error | 'pass', user?: any) => void): Promise; } //# sourceMappingURL=user.serializer.d.ts.map