import { EUomLibraryMemberType } from '../enums/euom-library-member-type'; import { EUomLibraryAffiliation } from '../enums/euom-library-affiliation'; export interface IUomLibraryLdapData { regno: string; username: string; surname: string; firstname: string; type?: EUomLibraryMemberType; affiliation?: EUomLibraryAffiliation[] | EUomLibraryAffiliation; school?: string; title?: string; email?: string; magstripe?: string; programme?: string; year?: string; principlename?: string; umanroleid?: string; } export declare function isIUomLibraryLdapData(test: unknown): test is IUomLibraryLdapData;