import { Engine } from './Engine'; export interface IPersonImage { url: string; id: string; title: string; isSelected?: boolean; isEdit?: boolean; } export declare class Application { iconSymbolUrl: string; iconfontConfig: Record; userInterface: Record; serverInterface: Record; serverHost: string; currentDomainInfo: Record; touristappid: string; personImageList: IPersonImage[]; iconList: string[]; productId: string; userId: string; mode: string; platform: string; miniAppAccountInfo: any; warehouse: Record>; theme: string; engine: Engine; loaded: boolean; constructor(engine: Engine); setAppInfo(data: any): void; setIconList(list: string[]): void; setImageList(list: IPersonImage[]): void; addImage(image: IPersonImage): void; setWarehouse(warehouse: Record>): void; setTheme(theme: string): void; getLifeImgUrl(url: string): string; }