import ErrorHandler from "../../error/ErrorHandler"; import IntlProvider from "./services/IntlProvider"; /** * The singleton application controller so it is accessable from everywhere */ declare class AppCtrl { /** * The auth provider of the application */ /** * The error handler of the application */ errorHandler: ErrorHandler; /** * The logged in user of the application */ /** * The internationalization provider of the app */ intlProvider?: IntlProvider; /** * Initializes the application controller */ init(): void; } declare const appCtrl: AppCtrl; export default appCtrl; //# sourceMappingURL=appCtrl.d.ts.map