import { JwtService } from '@nestjs/jwt'; export declare enum StatusRegister { NOT_ACTIVE = "not-active", ACTIVE = "active" } export declare const mockUsers: string[]; export declare const isTestingUser: (email: string) => boolean; export interface JwtPayload { id: string; email: string; statusRegister: StatusRegister; expiredAt: Date; isTesting: boolean; } export declare class AuthService { private readonly jwtService; constructor(jwtService: JwtService); generateJwt(payload: JwtPayload): Promise; }