import { Id, Person, User } from './memi'; import { TenantConfig, TenantGlobalConfig, UfcModuleNameType } from './ufc'; export interface InjectableGlobalConfig { isPrivateCloud?: boolean; HOST?: string; UFI_HOST?: string; NODE_HOST?: string; pwa?: false; user?: User; person?: Person; globalConfig?: TenantGlobalConfig; tenantId?: Id; tenantConfig?: TenantConfig; enabledApps?: string[]; hiddenModules?: UfcModuleNameType[]; } /** 是否为超级用户 */ export declare const isSupervisor: () => boolean; /** 是否为超级用户 */ export declare const isJiepeiKefu: () => boolean; /** 是否为外部协助过单用户 */ export declare const isExternalQuotationAssistant: () => boolean; export declare const DefaultObjectAvatarPlaceholder = "https://ufc-assets.oss-cn-shanghai.aliyuncs.com/migration/22.png?x-oss-process=image/resize,w_150";