import { OnInit, OnDestroy } from '@angular/core'; import { Location } from '@angular/common'; import { UrlManagerService } from '../url-manager.service'; import { ClickHandlerService } from '../click-handler.service'; import { ContextService } from '../context.service'; import { ErrorService } from '../error.service'; import { RepLoaderService } from '../rep-loader.service'; import { IDraggableViewModel } from '../view-models/idraggable-view-model'; import { ConfigService } from '../config.service'; import { AuthService } from '../auth.service'; import { HttpClient } from '@angular/common/http'; export declare class FooterComponent implements OnInit, OnDestroy { private readonly authService; private readonly urlManager; private readonly context; private readonly clickHandler; private readonly error; private readonly repLoader; private readonly location; private readonly configService; private readonly http; constructor(authService: AuthService, urlManager: UrlManagerService, context: ContextService, clickHandler: ClickHandlerService, error: ErrorService, repLoader: RepLoaderService, location: Location, configService: ConfigService, http: HttpClient); private warnSub; private messageSub; private cvmSub; private lcSub; loading: string; template: string; footerTemplate: string; userName: string; warnings: string[]; messages: string[]; copyViewModel: IDraggableViewModel; goHome: (right?: boolean) => void; goBack: () => void; goForward: () => void; swapPanes: () => void; swapDisabled: () => boolean; singlePane: (right?: boolean) => void; logOff: () => void; applicationProperties: () => void; recent: (right?: boolean) => void; cicero: () => void; readonly currentCopyColor: string; readonly currentCopyTitle: string; ngOnInit(): void; ngOnDestroy(): void; }