import { ConfigService, BaseService, PermissionsService, User } from '@ema/core'; import { Observable } from 'rxjs'; export declare class AppService { translation: any; state$: Observable; globalState$: Observable; state: any; user: User; base: BaseService; baseUrl: string; config: ConfigService; permissions: PermissionsService; loading: boolean; components: any[]; data: any; authenticated: boolean; initialized: any; errorMessage: string; constructor(enforcer: any); init(): Promise; initStores(): Promise; initSketchListeners(): void; initHistory(): void; parseComponents(): void; showFlashMessage(message: string, type: string, duration?: number): void; static readonly instance: any; }