import { type Response as OIDCResponse } from '@uportal/open-id-connect'; export interface userInfo { displayName: string; picture?: string; email: string; orgId?: string; hasOtherOrgs: boolean; } export default class userInfoService { static get(userInfoApiUrl: string, layoutApiUrl: string, orgIdAttribute: string, orgIdsAttribute: string, userInfo: OIDCResponse | null | undefined, debug: boolean): Promise; } //# sourceMappingURL=userInfoService.d.ts.map