import { UserInfoType, OperationInfoType } from '../AppContext/interface'; import { FeatureItemType, ThemeInfoType } from '../Config/interface'; export declare type InitDataType = { userInfo: UserInfoType; userFeatures: string[]; systemFeatures: FeatureItemType[]; operationInfo: OperationInfoType; themeConfig: ThemeInfoType; }; export declare function initialization(): Promise;