export interface IImportUser { // #ToDo: Remove this _id, as it isn't part of the imported data _id?: string; username?: string; emails: Array; importIds: Array; name?: string; utcOffset?: number; avatarUrl?: string; deleted?: boolean; statusText?: string; roles?: Array; type: 'user' | 'bot'; bio?: string; services?: Record>; customFields?: Record; }