/// <reference types="lodash" />
import { AppContext } from '@showpad/experience-app-types';
/**
 * Get the context where your app is running.
 *
 * @category Offline
 *
 * @example
 * ```typescript
 * import { Showpad } from '@showpad/experience-app-sdk'
 *
 * const appContext = Showpad.getAppContext()
 * ```
 */
export declare const getAppContext: (() => Exclude<AppContext, 'development' | 'showpadize'>) & import("lodash").MemoizedFunction;
