import { User } from './user.entity'; import { AuthenticationType } from '../types/authenticationType.enum'; import { SSOProviderType } from './ssoProvider.entity'; export declare class AuthenticationDetail { id: number; userId: number; type: AuthenticationType; password?: string; providerType?: SSOProviderType | null; providerId?: number | null; ssoSubject?: string | null; totpSecret?: string | null; totpEnabledAt?: Date | null; user: User; }