import * as S from '@m-fe/utils'; export declare type APP_NAME_TYPE = 'UFCON' | 'RSCON_SIMULATE'; /** 应用定义 */ export declare class App extends S.BaseEntity { hidden: boolean; name: APP_NAME_TYPE; lnk: string; key: string; version: string; label: string; url: string; icon: string; exe: string; isInstaller: boolean; md5: string; order: number; location: string; regeditLocation: string; get isInstalled(): boolean; constructor(data?: Partial); }