import { PermissionType, Person, TenantConfig, TenantGlobalConfig, User } from './user'; import { Id } from './utils'; export type UtkSubsidiaryType = 'junchen' | 'huitong' | 'unionfab'; export type UfcBizType = 'UTK_MES' | 'OVERSEA_OPS' | 'UFC_MES' | 'UFC_MES_PVC'; export interface InjectableRuntimeConfig { HOST?: string; NODE_HOST?: string; senteEndpoint?: string; pwa?: false; user?: User; person?: Person; globalConfig?: TenantGlobalConfig; tenantId?: Id; tenantConfig?: TenantConfig; hiddenModules?: PermissionType[]; bizType?: UfcBizType; subsidiary?: UtkSubsidiaryType; } /** 是否为超级用户 */ export declare const isSupervisor: () => boolean;