export declare class PosAppBrowser { restorePreviousSession: boolean; /** * The mode the app is running in: * * - standalone: use this when you deploy it as a standalone web application * - pod: use this when you host this app as a default interface for you pod */ mode: 'standalone' | 'pod'; uri: string; render(): any; private mainContent; }