import type { Title } from '../../../users/index.js'; import type { User } from './user.types.js'; import type { UserGenderLegacy } from '../../../types/index.js'; export declare enum UserStatusLegacy { Inactive = 0, Disabled = 1, Locked = 2, PendingResetPassword = 3, PendingEmailConfirmation = 4, Active = 5, Unknown = 6 } export type UserLegacy = Omit & { dateOfBirth: string | null; gender: UserGenderLegacy; title: Title | null; phoneNumber: string | null; segments: string[]; status: UserStatusLegacy; lastName: string | null; firstName: string | null; createdDate: string | null; updatedDate: string | null; loyalty: { membershipId: string; errorCode: string; errorMessage: string; succeeded: boolean; } | null; };