import { type Response as OIDCResponse } from '@uportal/open-id-connect';
export interface orgInfo {
    displayName: string;
    logo?: string;
}
export default class orgInfoService {
    static get(userInfoApiUrl: string, orgApiUrl: string, orgId: string, userInfo?: OIDCResponse | null, debug?: boolean): Promise<orgInfo | null>;
}
//# sourceMappingURL=orgInfoService.d.ts.map