export interface ITabBarItem { pagePath?: string; icon: string; activeIcon: string; name: string; isAdd?: boolean; } export interface ITabBarInfo { textColor?: string; selectedColor?: string; backgroundColor?: string; isAdd?: boolean; items: ITabBarItem[]; } interface IConfigItem { appName: string; backgroundColor: string; tabBar?: ITabBarInfo; } declare function getConfig(appId: string): IConfigItem; export default getConfig;