import type { AppConfig } from "../AppConfig"; import type { AppContext } from "../AppContext"; /** * Returns true if the original AppConfig was for a default Web application. * * @param appConfig The AppConfig. */ export declare const isDefaultApp: (appConfig: string | AppConfig) => boolean; /** * Returns true if the AppConfig was originally passed in as an object, * indicating that Web was likely started in App Designer or the SDK. * * @param appConfig The AppConfig. */ export declare const isAppBootstrapped: (appConfig: string | AppConfig) => boolean; /** * Returns the application ID if found through application params or baseURL * else returns "designer". * * @param appContext The appContext. */ export declare function getApplicationId(appContext: AppContext): string;