export declare class AdminPortal { static show(name?: string): void; static showMultiApp(name?: string): void; /** * Open the hosted portal must be called synchronously with user interaction * * @param newTab - open the portal in a new tab = true * @param name - the app name = 'default' */ static openHosted(newTab?: boolean, name?: string): void; static hide(name?: string): void; }