import { AppContext, Application } from '@foxpage/foxpage-types'; export declare class AppContextImpl implements AppContext { /** * application id * * @type {string} */ readonly appId: string; /** * application slug * * @type {string} */ readonly slug: string; /** * current application * * @type {Application} */ app: Application; constructor(app: Application); get tags(): import("@foxpage/foxpage-types").TagManager; get pages(): import("@foxpage/foxpage-types").PageManager; get packages(): import("@foxpage/foxpage-types").PackageManager; get variables(): import("@foxpage/foxpage-types").VariableManager; get conditions(): import("@foxpage/foxpage-types").ConditionManager; get templates(): import("@foxpage/foxpage-types").TemplateManager; get functions(): import("@foxpage/foxpage-types").FunctionManager; }